/* ==========================
   COLOR PALETTE & FONTS
========================== */
:root {
  --fresh-green: #78A678;
  --sky-blue: #A2CFF0;
  --silver-gray: #C0C0C0;
  --neutral-light: #F7F5F2;
  --text-dark: #2b2b2b;
  --highlight: #E5E5E5;
  --medium-green: #3F6B49;
  --button-light: #ebf5ea; /* unified light button background */
}

/* ==========================
 GLOBAL BASE
========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base body styles */
body {
  background-color: var(--neutral-light);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 1rem;
  scroll-behavior: smooth;

  /* Body text font */
  font-family: 'Josefin Sans', sans-serif;
}

/* ==========================
 FONT SYSTEM
========================== */

/* Section headings (H2 & H3) - Adobe font */
h2 {
color: var(--text-dark);
text-align: center;
margin-bottom: 25px; /* optional spacing */
}

/* Body text and list items */
body, p, ul li {
font-family: 'Josefin Sans', sans-serif;
font-weight: 400;
}

/* ==========================
 HEADER / NAVIGATION - LIGHT
========================== */
header {
position: fixed;
top: 0;
width: 100%;
z-index: 100;
background: transparent;
}

.nav-container {
max-width: 1200px;
margin: 0 auto;
padding: 10px 20px;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-weight: 700;
font-size: 1.25rem;
color: var(--button-light);
text-decoration: none;
text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

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

.nav-links a {
text-decoration: none;
padding: 6px 0;
font-weight: 500;
color: var(--text-dark);
font-size: 1rem;
text-shadow: 0 1px 2px rgba(0,0,0,0.15);
transition: all 0.25s ease;
position: relative;
background: transparent; /* removes white box behind links */
border: none;            /* ensures no default border */
box-shadow: none;        /* removes any shadow */
}

.nav-links a::after {
content: "";
display: block;
height: 2px;
background: var(--fresh-green);
width: 0%;
transition: width 0.3s ease;
position: absolute;
bottom: -3px;
left: 0;
}

.nav-links a:hover::after {
width: 100%;
}

.nav-links a:hover {
color: var(--medium-green);
background: transparent; /* keeps hover clean */
}

/* ==========================
 HERO SECTION
========================== */
.hero {
position: relative;
min-height: 80vh;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
overflow: hidden;
color: var(--neutral-light);
padding-top: 100px; /* space for fixed header */
}

.hero-video {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 0;
filter: brightness(0.5);
}

.hero-content {
position: relative;
z-index: 2;
max-width: 850px;
padding: 0 20px;
display: flex;
flex-direction: column;
align-items: center;
transform: translateY(-5%);
}

.hero-content p,
.hero-support {
color: var(--button-light);
}

.hero-support {
  padding-top: 20px;
}

/* ==========================
SECTION STYLING AND MAIN TITLE
========================== */
.section-accent-block {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden; /* hides any image overflow if using cover */
  height: 100px; /* desired visual height */
}

.section-accent-block img {
  width: 100%;
  height: 100%;       /* fill the container */
  object-fit: cover;  /* crop/stretch nicely */
  opacity: 0.25;      /* subtle fade */
}

/* Accent block 1: show top of image */
.section-accent-block.top img {
  object-fit: cover;
  object-position: top; /* top part of the image */
}

/* Accent block 2: show center of image */
.section-accent-block.center img {
  object-fit: cover;
  object-position: center; /* center part */
}

/* Accent block 3: show bottom of image */
.section-accent-block.bottom img {
  object-fit: cover;
  object-position: bottom; /* bottom part */
}

/* Main title */
.main-title {
font-weight: 400;
font-style: normal;
margin: 1em 0 1.5em;
letter-spacing: 0.12em;
color: var(--sky-blue);
line-height: 1.1;
text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.title-line {
font-size: 3.5rem;
display: block;
margin-bottom: 0.5em;
}

.highlight {
display: block;
color: var(--button-light);
font-weight: 400;
letter-spacing: 0.08em;
font-size: 2.0 rem;
}

/* Tagline */
.tag-line {
color: var(--button-light);
font-size: 1.8rem;
font-weight: 300;
font-style: italic;
margin: 1em 0 2em;
padding-top: 2em;
}

.hero-support {
color: var(--button-light);
}

/* ==========================
 ABOUT + SERVICES FLOW (REFINED)
========================== */
#about {
  padding-top: 10px;
  padding-bottom: 40px;
  margin-top: 0;
  margin-bottom: 0;
}

#services {
  padding-top: 40px;
}

/* Shared background / depth */
#about,
#services {
  background: linear-gradient(
    to bottom,
    rgba(120, 166, 120, 0.10),
    rgba(120, 166, 120, 0.14),
    rgba(120, 166, 120, 0.10)
  );
}

/* ==========================
 BUTTONS (Hero + Services)
========================== */

/* main hero/signup button */
.signup-button {
  background-color: var(--sky-blue);
  color: var(--text-dark);
}
/* Services buttons container */
#services ul {
  display: flex;
  flex-wrap: wrap;           
  gap: 24px;                 /* spacing between buttons */
  padding: 0;
  margin-top: 20px;
  list-style: none;
  justify-content: flex-start; /* optional, aligns items to left */
}

/* Individual button wrapper */
#services ul li {
  flex: 1 1 calc(25% - 24px); /* each button takes 1/4 width minus gap */
  max-width: calc(25% - 24px); /* prevent growing too wide */
  display: flex;
  justify-content: center;
}

/* Service buttons */
#services ul li a.service-button {
  display: flex;
  flex-direction: column;   /* stacks image above text */
  align-items: center;      /* centers everything */
  justify-content: center;
  gap: 8px;                 /* space between photo and text */

  width: 100%;               
  text-align: center;
  background-color: var(--sky-blue);
  color: var(--text-dark);
  font-weight: 500;
  padding: 16px 20px;       /* slightly more breathing room */
  border-radius: 50px;
  border: 1px solid var(--highlight);
  text-decoration: none;
  transition: all 0.3s ease;
}
#services ul li a.service-button img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;   /* optional — makes image circular */
}

#services ul li a.service-button:hover {
  background-color: var(--highlight);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Hero buttons (shared style) */
.signup-button,
.service-button {
  font-size: 1.1rem;
  padding: 12px 28px;
  border-radius: 50px;
  color: var(--text-dark);
  border: 1px solid var(--highlight);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 0px;
  display: inline-block;
  text-align: center;
}

.signup-button:hover,
.service-button:hover {
  background-color: var(--highlight);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Center all standalone buttons */
.signup-button-container,
.signup-button-container-2 {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
}

.signup-button-container-2 {
  margin-top: 40px;
  margin-bottom: 40px;
}

/* ==========================
 SECTIONS & TEXT
========================== */
section {
  padding: 60px 20px;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 2.2rem;
  margin-top: 1px;
  margin-bottom: 25px;
  color: var(--text-dark);
  text-align: center;
}

p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 20px;
  text-align: center;
}

/* ==========================
 LUXURY CONTACT SECTION
========================== */
#contact {
text-align: center;
background: linear-gradient(
  to bottom,
  rgba(120, 166, 120, 0.04),
  rgba(120, 166, 120, 0.08)
);
box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

#contact h2 {
font-family: 'Playfair Display', serif;
font-size: 2.4rem;
margin-bottom: 40px;
color: var(--text-dark);
font-weight: 700;
letter-spacing: 0.05em;
}

#contact .contact-info p {
font-size: 1.15rem;
margin: 15px 0;
font-weight: 400;
color: var(--text-dark);
transition: all 0.25s ease;
}

#contact .contact-info p:hover {
color: var(--medium-green);
}

.contact-icon {
font-size: 1.3rem;
margin-right: 10px;
vertical-align: middle;
}

#contact a {
color: var(--sky-blue);
text-decoration: none;
font-weight: 500;
transition: color 0.25s ease, letter-spacing 0.25s ease;
}

#contact a:hover {
color: var(--medium-green);
letter-spacing: 0.5px;
}

/* Center and style booking button with a luxury vibe */
#contact .signup-button-2 {
display: inline-block;
margin-top: 35px;
padding: 14px 34px;
font-size: 1.1rem;
border-radius: 50px;
background-color: var(--sky-blue);
color: var(--text-dark);
border: 1px solid var(--highlight);
box-shadow: 0 6px 18px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}

#contact .signup-button-2:hover {
background-color: var(--highlight);
color: var(--text-dark);
transform: translateY(-2px);
box-shadow: 0 8px 22px rgba(0,0,0,0.15);
}

/* ==========================
 FOOTER
========================== */
footer {
background-color: var(--sky-blue);
color: var(--neutral-light);
text-align: center;
padding: 40px 15px;
}

.footer-seals {
display: flex;
justify-content: center;
gap: 20px;
margin-top: 15px;
}

.footer-seals img {
width: 90px;
height: auto;
}

/* ==========================
 HERO ANIMATIONS
========================== */
.hero-content h1,
.hero-content h3 {
opacity: 0;
animation: fadeInUp 1.2s ease forwards;
}

.hero-content h3 {
animation-delay: 0.4s; /* tagline fades in after main title */
}

.hero-support {
opacity: 0;
transform: translateY(20px); /* start slightly below */
animation: fadeInUp 1.2s ease forwards;
animation-delay: 1.0s; /* delay after tagline */
}

/* Keyframes */
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(20px);}
to { opacity: 1; transform: translateY(0);}
}

/* ==========================
 MOBILE ADJUSTMENTS
========================== */
@media (max-width: 768px) {

  header {
    position: static; /* nav scrolls naturally */
  }
  
  .hero {
    min-height: 50vh;
    padding-top: 100px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 20px;
  }
  
  .main-title {
    font-size: 2rem;
    letter-spacing: 0.05em;
  }
  
  .tag-line {
    font-size: 1.2rem;
    margin: 15px 0 20px;
  }
  
  .signup-button,
  .service-button {
    font-size: 0.95rem;
    padding: 18px 24px; /* slightly larger for image + text layout */
    margin-left: auto;
    margin-right: auto;
  }
  
  /* SERVICE BUTTONS - MOBILE LAYOUT */
  #services ul li {
    flex: 1 1 100%;   /* one button per row */
    max-width: 100%;
  }
  
  /* Larger images for mobile */
  #services ul li a.service-button img {
    width: 90px;
    height: 90px;
    object-fit: cover;
  }
  
  section {
    padding: 50px 15px;
  }
  
  ul li {
    padding: 12px 18px;
    font-size: 0.95rem;
  }
  
  footer {
    padding: 30px 15px;
  }
  
  .footer-seals img {
    width: 50px;
  }
  
  .nav-container {
    flex-direction: column;
    gap: 12px;
  }
  
  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  
  .nav-links a {
    width: auto;
    text-align: center;
  }
  
  }