:root {
    --primary-color: #0e5597;     /* Main brand color - medium blue */
    --secondary-color: #c0c0c2;   /* Secondary brand color - lighter blue */
    --accent-color: #da0006;      /* Accent for highlights and CTAs - orange */
    --background-color: hsl(0, 0%, 100%);  /* Light background color */
    --text-color: #202020;        /* Dark color for text */
    --shadow-color: rgba(0, 0, 0, 0.1);
    --light-gray: #f5f5f7;
    --medium-gray: #888;
    --inverted-primary-color: #202020;
}

body {
  font-family: 'Raleway', sans-serif;
  margin: 0;
  padding: 0;
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
}

#content{
  width:900px;
  margin: 0 auto;
}

/* General Content */
.gen-button {
  text-align: center;
}

.gen-col a {
  color: #c0c0c2;
  text-decoration: none;
  transition: color 0.3s;
}

.gen-col a:hover {
  color: white;
  text-decoration: underline;
}


.gen-content-left {
  display: flex;
  justify-content: start;
  flex-direction: column;
  text-align: start;
}

.gen-content-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.gen-content-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.gen-content-card {
  display: flex;
  align-items: center;
  gap: 40px;
}


.gen-content-content {
  flex: 1;
}


/* Header & Navigation */
#header {
  background-color: var(--inverted-primary-color);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px var(--shadow-color);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  height: 50px;
  position: relative;
  top: 10px;
}

.slingshot {
  font-size: 24px;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin-left: 25px;
}

/* removed "color:white" to have the button on header with visible text */
.nav-menu a {
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
}

.nav-menu a:hover {
  opacity: 0.8;
}

/* Limited time offer banner */
.time-limited-banner {
  background-color: var(--accent-color);
  color: white;
  text-align: center;
  padding: 10px 0;
  font-weight: 600;
}

.countdown {
  font-weight: 700;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.8; }
  100% { opacity: 1; }
}

/* CTA Button */
.btn {
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  font-size: 18px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(218, 0, 6, 0.3);
}

.btn-large {
  font-size: 20px;
  padding: 18px 40px;
}

.small-print {
  font-size: 12px;
  color: var(--medium-gray);
  margin-top: 10px;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.pricing-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing-card {
  background-color: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px var(--shadow-color);
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  position: relative;
  transition: transform 0.3s;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.popular {
  border: 2px solid var(--accent-color);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
}

.pricing-card h3 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.price {
  text-align: center;
  margin-bottom: 10px;
}

.current-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
}

.period {
  font-size: 16px;
  color: var(--medium-gray);
}

.crossed-price {
  text-decoration: line-through;
  color: var(--medium-gray);
  font-size: 20px;
  margin-right: 10px;
}

.savings {
  text-align: center;
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 20px;
}

.no-savings {
  text-align: center;
  color: var(--medium-gray);
  height: 24px;
  margin-bottom: 20px;
}

.btn-secondary {
  background-color: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 10px 20px rgba(14, 85, 87, 0.3);
}

/* Activity Notification */
.activity-notification {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px var(--shadow-color);
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 300px;
  animation: slideIn 0.5s forwards, fadeOut 0.5s 10s forwards;
  z-index: 1000;
}

.activity-notification p {
  margin: 0;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; visibility: hidden; }
}

.limited-offer {
  background-color: rgba(255, 255, 255, 0.2);
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.final-timer {
  font-weight: 700;
  color: var(--accent-color);
}

.social-proof {
  margin-top: 20px;
}

/* Footer */
.main-footer {
  background-color: #0c4042;
  color: white;
  padding: 60px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.footer-col h4 {
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #c0c0c2;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: white;
  text-decoration: underline;
}

.copyright {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 14px;
  color: #c0c0c2;
}

