/* Basic reset & variables */
:root{
  --brand-yellow: #ffbd59;
  --brand-green: #256524;
  --brand-orange: #ffb347;
  --background-neutral: #402E21;
  --muted: #f3f3f3;
  --text: var(--brand-orange);
  --max-width: 1100px;
  --radius: 10px;
  --font: 'Roboto', 'Trebuchet MS', Arial, sans-serif;
}


html, body, #intro {
  background-color: #402E21 !important;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  color: var(--brand-orange);
  font-family: var(--font);
  background: #402E21;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px;
}

.logo-container {
  position: relative;
  width: 200px;        
  height: auto;
  margin: 20px auto;   
  aspect-ratio: 4 / 1; 
  z-index: 10;
}

.logo {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: auto;
  transition: opacity 1.2s ease, transform 1.2s ease;
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.logo.hidden {
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.logo-fadeout {
  opacity: 0 !important;
  transform: translateY(-10px);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}


/* Services Section */
.services-section {
  padding: 40px 20px;
  background-color: transparent;
  text-align: center;
}

.services-section h2 {
  margin-bottom: 30px;
  color: var(--brand-green);
  font-weight: 800;
  font-size: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
  justify-content: center;
}

.service-card {
  background: #402E21;
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 2px solid var(--brand-yellow);
  transition: box-shadow 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
  color: var(--brand-orange);
  margin-bottom: 12px;
}

.tier-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tier-card {
  background: #256524; 
  padding: 14px 18px;
  border-radius: 8px;
  border: 1.5px solid var(--brand-yellow);
  box-shadow: inset 0 0 2px rgba(255, 189, 89, 0.05); /* very subtle inner glow */
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid var(--brand-yellow);
}

.tier-card:last-child {
  border-bottom: none;
}


.tier-card:hover {
  background-color: rgba(255, 189, 89, 0.1); 
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 189, 89, 0.15), 0 2px 8px rgba(0, 200, 83, 0.1);

}


.tier-card h4 {
  margin: 0 0 6px 0;
  font-weight: 600;
  color: var(--brand-green);
  font-size: 1.1rem;
}

.tier-card p {
  margin: 0;
  color: var(--brand-orange);
  font-size: 0.95rem;
}


.price {
  font-weight: 800;
  color: var(--brand-orange);
  margin-top: 4px;
}


.social-icons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 30px 0;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-green);
  color: var(--brand-yellow);
  text-decoration: none;
  font-size: 22px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  background: var(--brand-green);
  color: var(--brand-yellow);
}




@media (max-width:900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.tier-extra {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  font-size: 0.9rem;
  color: var(--brand-orange); 
  margin-top: 8px;
  text-align: left;
  padding-left: 15px;
}


.tier-card:hover .tier-extra {
  max-height: 500px; 
  opacity: 1;
}

.package-subtitle {
    font-size: 1rem;
    color: #FFA500; 
    margin-top: -5px; 
    margin-bottom: 20px;
    font-style: italic;
}

.contact-section {
    background-color: #5c5c5c;
    padding: 50px 20px;
    text-align: center;
    border-radius: 10px;
    margin-top: 40px;
}

.contact-title {
    font-size: 2.5rem;
    color: #FFA500;
    margin-bottom: 10px;
}

.contact-subtext {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 30px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #FFA500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #C9B8A1;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid #FFA500;
    background-color: #fff;
}

.contact-form button {
    background-color: #C9B8A1;
    color: #000;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #ffb733;
}

#top-guide {
  position: fixed;
  top: -80px; 
  left: 0;
  width: 100%;
  background-color: var(--brand-green); 
  color: var(--brand-yellow); 
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  border-bottom: 2px solid #00C853;
  transition: top 0.5s ease, opacity 0.5s ease; 
  z-index: 999;
  font-family: 'Roboto', sans-serif;
  opacity: 0; 
}

#top-guide .guide-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

#top-guide .guide-logo img {
  height: 40px; 
}

#top-guide .guide-logo span {
  font-size: 1rem;
  font-weight: 500;
  color: #ffb347;
}

#top-guide .guide-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

#top-guide .guide-links a {
  color: var(--brand-yellow);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

#top-guide .guide-links a:hover {
  color: var(--brand-orange);
}

.shutter-logo {
    width: 150px !important;  
    height: auto !important;  
    display: block;
}

.capturing-moment {
display: block !important;
    margin: 0 0 0 auto !important;   
    width: 254px !important;          
    max-width: 100% !important;       
    height: auto !important;          
    margin-left: 50px !important;     
    position: relative !important;    
    top: -0px !important;             


}

.title-img {
 display: block !important;       
    width: auto !important;          
    height: auto !important;         
    max-height: 5em !important;      
    max-width: 100% !important;      
    margin: 0 auto !important;       

}

:root{
  --brand-green: #256524;   
  --brand-yellow: #ffbd59;  
  --brand-orange: #ffb347;  
}


#guide-bar{ display:none !important; }


#nav-bar{
  background: var(--brand-green) !important;
}
#nav-bar nav a{
  color: var(--brand-yellow) !important;
  font-weight: 800;
}
#nav-bar nav a:hover{
  text-decoration: underline;
}


html, body, h1, h2, h3, h4, h5, h6,
p, li, span, label, small, strong, em {
  color: var(--brand-orange) !important;
  font-weight: inherit;
}

/* Services & Packages cards */
.service-card h3{
  color: var(--brand-orange) !important;
}
.tier-card h4{
  /* FIX: was green on green; now visible */
  color: var(--brand-orange) !important;
}
.tier-card p{
  color: var(--brand-orange) !important;
}

/* Package subtitles (e.g., "Short-form promos...") */
.package-subtitle{
  color: var(--brand-orange) !important;
  font-style: italic;
}

/* Contact section text */
#contact, #contact p, #contact label{
  color: var(--brand-orange) !important;
}

/* Social icons: orange icon inside green bubble */
.social-icons a{
  background: var(--brand-green) !important;  /* bubble */
  color: var(--brand-orange) !important;      /* icon color */
}
.social-icons a:hover{
  filter: brightness(1.15);
}

/* === Help Us Help You box === */
#contact {
  background-color: var(--brand-green) !important; /* green border */
  padding: 20px;
  border-radius: 8px; /* optional: smooth corners */
}

/* === About Us paragraph highlight === */
#about p {
  background: rgba(255, 179, 71, 0.15); /* softer orange tone */
  padding: 12px 18px;
  border-left: 4px solid var(--brand-orange); /* subtle accent */
  border-radius: 6px;
}

/* Navbar container */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* allow wrapping when screen shrinks */
  background: var(--brand-green); /* or your brand background */
  padding: 10px 20px;
}

/* Logo image */
nav img {
  height: 40px; /* adjust size to match text */
  margin-right: 10px;
}

/* Nav links */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

/* Mobile menu toggle (hidden on desktop) */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 4px 0;
}

/* Responsive breakpoint */
@media (max-width: 768px) {
  nav ul {
    display: none; /* hide links initially */
    flex-direction: column;
    width: 100%;
    background: #111;
    text-align: center;
  }

  nav ul.showing {
    display: flex; /* show links when toggled */
  }

  .menu-toggle {
    display: flex;
  }
}
/* Capturing Moments tagline */
nav .tagline {
  max-height: 30px;
  width: auto;
}

/* Hide tagline on smaller screens */
@media (max-width: 768px) {
  nav .tagline {
    display: none;
  }
}

/* Responsive nav menu */
@media (max-width: 768px) {
  nav {
    flex-direction: row; /* keep logo inline */
    align-items: center;
  }

  nav ul {
    display: none;
    flex-direction: column;
    background: #2ecc71;
    text-align: center;
    width: 70%;          /* smaller dropdown width */
    max-height: 300px;   /* stops it from covering the whole screen */
    margin: 0 auto;      /* center it */
    border-radius: 8px;  /* softer edges */
    padding: 10px 0;
  }

  nav ul.showing {
    display: flex;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
  }
}

@media (max-width: 768px) {   /* adjust breakpoint as needed */

      .nav-center {
        position: fixed !important;       /* keeps nav bar on screen */
        top: 0 !important;                /* sticks it to the top */
        left: 0 !important;
        width: 100% !important;           /* full width */
        height: 30px !important;          /* smaller height */
        z-index: 9999 !important;         /* above other content */
        background-color: var(--brand-green) !important; /* match desktop color */
        padding: 0 !important;            /* remove extra padding causing white space */
        margin: 0 !important;             /* remove extra margin */
        box-sizing: border-box !important;
        display: flex;
        align-items: center;              /* vertically centers content */
        justify-content: space-between;   /* space items across */
    }

    .nav-center .nav-item {
        font-size: 14px !important;       /* smaller font for compact nav */
        line-height: 50px !important;     /* vertically centers text */
        margin: 0 !important;             /* remove any extra spacing */
    }

    /* Dropdown adjustments if needed */
    .nav-center .dropdown-menu {
        position: static !important;      /* dropdowns push content instead of floating */
        display: block !important;        /* toggle visibility via JS if desired */
    }
}

@media (max-width: 768px) {
    #about-us > div[style*="position: relative"] {
        height: auto !important;            /* allow container to grow with text */
    }

    #about-us > div[style*="position: relative"] p {
        font-size: 0.88rem !important;      /* scale text for readability */
    }

    #about-us > div[style*="position: relative"] div {
        height: auto !important;            /* overlay div grows with paragraph */
        padding: 15px !important;           /* spacing inside overlay */
        display: flex !important;
        align-items: flex-start !important; /* align text to top of overlay */
    }
}

/* Hide hamburger menu */
.menu-toggle {
  display: none !important;
}

@media (max-width: 768px) {
  nav ul {
    display: flex;
    flex-direction: column; /* stack vertically */
    align-items: center;    /* center them */
    gap: 1rem;              /* even spacing */
    background-color: #2f4f2f; /* match your green navbar */
    padding: 2.5rem 0 1rem 0; /* added more top padding */
    margin: 0;
  }

  nav ul li {
    list-style: none;
  }

  nav ul li a {
    color: #f4d03f;  /* your text color */
    font-size: 1.1rem;
    text-decoration: none;
  }
}

/* Top Nav Bar */
#nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px; /* smaller height */
  background-color: #5c5c5c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform 0.4s ease, height 0.3s ease;
}

/* Left Logo */
.nav-left .nav-logo {
  height: auto;
  max-height:50px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

/* Center tagline */
.nav-center .nav-tagline {
  height: auto;
  max-height: 50px;
  width: auto;
  object-fit: contain;
}

/* Right links */
.nav-right {
  display: flex;
  align-items: center;
}

.nav-right ul {
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-right ul li a {
  color: #00C853;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.9rem;
}

.nav-right ul li a:hover {
  text-decoration: underline;
}

/* Hamburger for small screens */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: 10px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
  #nav-bar {
    height: auto;
    flex-wrap: wrap;
    padding: 10px;
  }

  .nav-center {
    order: 3;
    width: 100%;
    text-align: center;
    margin: 5px 0;
  }

  .nav-right ul {
    flex-direction: column;
    width: 100%;
    display: none;
    gap: 10px;
    text-align: center;
    margin-top: 5px;
  }

  .nav-right ul.showing {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}

/* Smaller nav bar images on mobile */
@media (max-width: 768px) {
  
  
  .logo-wrapper img,
  .capturing-moment-wrapper img {
    max-height: auto;   /* shrink height to fit nav */
    width: auto;        /* maintain aspect ratio */
  }

 
}

/* Desktop: keep images where they are */
#nav-bar .nav-left,
#nav-bar .capturing-moment {
  display: flex;
  align-items: center;
 
}

/* Mobile / small screens */
@media (max-width: 768px) {
  /* Stack nav bar content */
  #nav-bar {
    flex-direction: column;
    align-items: center;
	padding: 20px 10px; 
  }

  /* Move images to the bottom */
  #nav-bar .nav-left,
  #nav-bar .capturing-moment {
    order: 2; /* push to bottom */
    margin-top: 10px;
  }

  /* Keep nav links on top */
  #nav-bar nav {
    order: 1;
    width: 100%;
    justify-content: center;
  }

  /* Optional: shrink images slightly */
  #nav-bar .nav-left img,
  #nav-bar .capturing-moment img {
    max-height: 35px;
  }
}

/* Default spacing for desktop */
#intro-container {
  margin-top: 0;
}

/* On smaller screens, push it down 3-4 notches (~60-80px) */
@media (max-width: 768px) {
  #intro-container {
    margin-top: 70px; /* adjust this number to get the perfect drop */
  }
}

@media (max-width: 1240px) {   /* adjust breakpoint as needed */
    .capturing-moment {
        display: none !important;   /* or set to none to hide entirely */
        width: 200px !important;     /* smaller on mobile */
        margin: 20px auto 0 auto !important; /* move under logo and center */
        top: 0 !important;           /* reset vertical shift */
    }

@keyframes spinOnce {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* About Us text fix for vertical mobile screens */
@media screen and (max-width: 480px) and (orientation: portrait) {
  #about-us p {
    font-size: 14px !important; /* adjust as needed */
    line-height: 1.4;
  }

  #about-us h2 {
    font-size: 22px !important; /* shrink the heading */
  }
}

@media screen and (max-width: 768px) {
  #nav-bar {
    transform: translateY(0) !important;
    position: fixed;
  }
}

/* Only apply for screens narrower than 768px (adjust as needed) */
@media (max-width: 768px) {
  body {
    padding-top: 70px !important; /* space for the nav bar on small screens */
  }

  /* Or if you just want the intro section to move down */
  #intro-container {
    margin-top: 70px !important;
  }
}



