/* --- Variables & Reset --- */
:root {
  --primary-color: #ffb300;
  --bg-dark: #161a2b;
  --bg-darker: #101321;
  --card-bg: #1b2136;
  --text-light: #ffffff;
  --text-muted: #a0a5b5;
  --font-heading: "Exo", sans-serif;
  --font-body: "Open Sans", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  background-color: var(--bg-dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-light);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img,
video {
  max-width: 100%;
}

/* --- Hamburger Menu & Responsive CSS --- */
.hamburger {
  display: none;
  font-size: 1.8rem;
  color: #ffffff;
  cursor: pointer;
}

.mobile-only-btn {
  display: none;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.container {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Typography --- */
.hero-title {
  font-size: clamp(2.5rem, 6vw, 50px);
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 42px);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.text-highlight {
  color: var(--primary-color);
}

.section-tag {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-tag i {
  margin-right: 5px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #000;
}

.btn-primary:hover {
  background-color: #e6a200;
}

.btn-block {
  display: block;
  width: 100%;
  margin-top: 20px;
}

/* --- Backgrounds --- */
.bg-dark {
  background-color: var(--bg-dark);
}

.bg-darker {
  background-color: var(--bg-darker);
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, border-bottom-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.is-scrolled {
  background: rgba(16, 19, 33, 0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--text-light);
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary-color);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(16, 19, 33, 0.3) 0%,
    rgba(22, 26, 43, 1) 100%
  );
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  width: 100%;
  margin-top: 50px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 20px);
  color: var(--text-light);
  margin-bottom: 40px;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.store-buttons img {
  height: 50px;
  width: auto;
  border-radius: 8px;
}

/* --- Snooze for a Cause Section --- */
.snooze-cause {
  padding: 100px 0;
}

.flex-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.content-left,
.image-right {
  flex: 1;
  min-width: 0;
}

.image-right {
  position: relative;
  z-index: 1;
  text-align: center;
}

.glow-bg-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  max-width: 700px;
  z-index: -1;
  pointer-events: none;
  opacity: 0.8;
}

.image-right img:not(.glow-bg-1) {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  display: block;
  margin: 0 auto;
}

.feature-list {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: var(--card-bg);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.icon-box {
  background-color: rgba(255, 179, 0, 0.1);
  color: var(--primary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.feature-item h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.feature-item p {
  font-size: 16px;
  margin: 0;
}

/* --- Small Habits Section --- */
.small-habits {
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
}

.text-center {
  text-align: center;
}

.narrow-p {
  max-width: 800px;
  margin: 0 auto 50px;
}

.phones-showcase {
  text-align: center;
  margin-top: 40px;
  position: relative;
}

.phones-showcase img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.glow-bg-2 {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1200px;
  z-index: -1;
  pointer-events: none;
  opacity: 0.7;
}

.phones-showcase .main-img {
  max-width: 100%;
  position: relative;
  z-index: 2;
}

/* --- Recent Campaigns Section --- */
.recent-campaigns {
  padding: 100px 0;
}

.campaign-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 50px;
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.campaign-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.campaign-card:hover {
  transform: translateY(-5px);
}

.campaign-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 30px;
}

.card-content .date {
  display: block;
  font-size: 14px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.card-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.card-content p {
  font-size: 16px;
  margin-bottom: 20px;
  min-height: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 16px;
}

.read-more i {
  margin-left: 5px;
}

/* --- Contact Form Section --- */
.contact-section {
  padding: 100px 0;
}

.idea-form {
  max-width: 800px;
  margin: 40px auto 0;
  text-align: left;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
  flex: 1;
}

.form-group label {
  display: block;
  color: var(--text-light);
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 16px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* --- Footer --- */
.footer {
  padding: 80px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 40px;
  margin-bottom: 30px;
}

.footer-logo {
  height: 35px;
  margin-bottom: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-light);
  margin-right: 10px;
  transition: background-color 0.3s;
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: #000;
}

.links-col ul li {
  margin-bottom: 12px;
}

.links-col ul li a {
  color: var(--text-muted);
  transition: color 0.3s;
  font-size: 16px;
}

.links-col ul li a::before {
  content: "\2022";
  color: var(--primary-color);
  margin-right: 8px;
}

.links-col ul li a:hover {
  color: var(--text-light);
}

.store-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.store-col img {
  height: 40px;
  width: auto;
  border-radius: 6px;
}

.copyright {
  font-size: 14px;
}

/* --- Responsive Design --- */
@media (max-width: 1100px) {
  .nav-links {
    gap: 20px;
  }

  .flex-container {
    gap: 40px;
  }

  .campaign-grid {
    gap: 24px;
  }
}

@media (max-width: 992px) {
  .snooze-cause,
  .recent-campaigns,
  .contact-section {
    padding: 80px 0;
  }

  .small-habits {
    padding-top: 80px;
  }

  .flex-container {
    flex-direction: column;
    text-align: center;
  }

  .feature-item {
    text-align: left;
  }

  .image-right {
    width: min(100%, 640px);
  }

  .campaign-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .campaign-header {
    align-items: flex-start;
  }

  .footer-content {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .container {
    padding: 0 16px;
  }

  .navbar {
    padding: 16px 0;
  }

  .hero {
    min-height: 100svh;
    height: auto;
    padding: 120px 0 72px;
  }

  .hero-title {
    line-height: 1.3;
  }

  .hero-title br {
    display: none;
  }

  .hero-subtitle {
    margin-bottom: 30px;
  }

  .store-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .store-buttons img {
    height: 45px;
  }

  .image-right {
    margin-top: 50px;
    width: 100%;
  }

  .image-right img:not(.glow-bg-1) {
    max-width: 90%;
  }

  .glow-bg-1 {
    width: 100%;
    max-width: 100vw;
  }

  .campaign-grid {
    grid-template-columns: 1fr;
  }

  .campaign-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .desktop-btn {
    display: none;
  }

  .hamburger {
    display: block;
    position: relative;
    z-index: 1000;
  }

  .mobile-only-btn {
    display: block;
    margin-top: 20px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(78vw, 320px);
    height: 100vh;
    background-color: rgba(16, 19, 33, 0.97);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.4s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    z-index: 999;
    padding: 0;
    margin: 0;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 20px 0;
  }

  .nav-links li a {
    font-size: 1.2rem;
    color: #ffffff;
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: auto;
    padding: 110px 0 64px;
  }

  .snooze-cause,
  .recent-campaigns,
  .contact-section,
  .footer {
    padding-top: 64px;
  }

  .section-title {
    margin-bottom: 16px;
  }

  .feature-item {
    flex-direction: column;
    gap: 14px;
    padding: 18px;
  }

  .card-content {
    padding: 22px 18px;
  }

  .idea-form {
    margin-top: 32px;
  }

  .store-col img,
  .store-buttons img {
    height: auto;
    max-height: 48px;
  }
}



.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.lang-switcher a {
  opacity: 0.7;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.lang-switcher a.active,
.lang-switcher a:hover {
  color: var(--primary-color);
  opacity: 1;
}

@media (max-width: 768px) {
  .nav-actions {
    margin-left: auto;
    gap: 14px;
  }

  .lang-switcher {
    font-size: 13px;
    gap: 8px;
  }
}






