/* =============================================
   Foto Spots — Landing Page Styles
   Colour palette matches the mobile app:
     oceanBlue   #00284D
     skyBlue     #3A97D1
     lightBlue   #7CCBF2
     sunYellow   #FFD84A
     lightOrange #F2AB00
     forestGreen #1F7A4C
   ============================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ocean-blue:   #00284D;
  --sky-blue:     #3A97D1;
  --light-blue:   #7CCBF2;
  --sun-yellow:   #FFD84A;
  --light-orange: #F2AB00;
  --forest-green: #1F7A4C;
  --white:        #ffffff;
  --text-muted:   rgba(255,255,255,0.65);

  --font-title: 'Cabin Sketch', cursive;
  --font-body:  'Lato', sans-serif;

  --radius: 14px;
  --max-w:  1100px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--ocean-blue);
  color: var(--white);
  line-height: 1.6;
}

/* ── Utility ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.15s ease, opacity 0.15s ease;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.btn-primary {
  background-color: var(--sun-yellow);
  color: var(--ocean-blue);
}
.btn-outline {
  border: 2px solid var(--light-blue);
  color: var(--light-blue);
  background: transparent;
}
.btn-outline:hover {
  background-color: rgba(124, 203, 242, 0.1);
}

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(0, 40, 77, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(242, 171, 0, 0.3);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--light-blue);
  letter-spacing: 1px;
}
.nav nav {
  display: flex;
  gap: 28px;
}
.nav nav a {
  color: var(--light-blue);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 0.15s;
}
.nav nav a:hover {
  color: var(--sun-yellow);
}

/* ── Hero ── */
.hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(58, 151, 209, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 216, 74, 0.08) 0%, transparent 50%),
    var(--ocean-blue);
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 700px;
}
.hero-video {
  width: min(750px, 70vw);
  height: auto;
  border-radius: 24px;
  border: 5px solid var(--sun-yellow);
}
.hero-logo {
  width: min(380px, 80vw);
  height: auto;
}
.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--light-blue);
  line-height: 1.5;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.badge {
  background-color: rgba(58, 151, 209, 0.15);
  border: 1px solid rgba(124, 203, 242, 0.35);
  color: var(--light-blue);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
}

/* ── Section headings ── */
.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--sun-yellow);
  margin-bottom: 12px;
  text-align: center;
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 52px;
}

/* ── Features ── */
.features {
  padding: 90px 0;
  background-color: rgba(0, 0, 0, 0.15);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background-color: rgba(58, 151, 209, 0.1);
  border: 1px solid rgba(124, 203, 242, 0.2);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 216, 74, 0.4);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sun-yellow);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── About ── */
.about {
  padding: 90px 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-text .section-title {
  text-align: left;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1rem;
}
.about-contact {
  background-color: rgba(58, 151, 209, 0.1);
  border: 1px solid rgba(124, 203, 242, 0.2);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-contact h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--light-blue);
}
.about-contact p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ── Footer ── */
.footer {
  border-top: 1px solid rgba(242, 171, 0, 0.25);
  padding: 36px 0;
  background-color: rgba(0, 0, 0, 0.2);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--sun-yellow);
}
.footer-nav {
  display: flex;
  gap: 24px;
}
.footer-nav a {
  color: var(--light-blue);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s;
}
.footer-nav a:hover {
  color: var(--sun-yellow);
}
.footer-copy {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ── Scroll to top ── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--light-orange);
  color: var(--ocean-blue);
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  transform: translateY(-3px);
  background-color: var(--sun-yellow);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav nav {
    gap: 16px;
  }
  .nav nav a {
    font-size: 0.85rem;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-text .section-title {
    text-align: center;
  }
  .about-text p {
    text-align: center;
  }
  .scroll-top {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .nav {
    display: none;
  }
}
