/* Elegant Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:wght@400;600&display=swap');

/* Font Imports (unchanged) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:wght@400;600&display=swap');

/* Define Colors as CSS Variables (Place at top or in :root) */
:root {
    /* Adjust this gold to match your brand's exact shade */
    --gold-accent: #c4a66a; /* Example: A muted, elegant gold */ 
    /* --gold-accent: #d4af37; */ /* Example: Brighter Gold */
    
    --navbar-bg-color: rgba(17, 45, 50, 0.80); /* Dark Teal - Slightly less transparent for better contrast */
    --navbar-link-color: rgba(255, 255, 255, 0.85); /* Off-white for links */
    --navbar-link-hover-color: #ffffff; /* Brighter white on hover */
    --navbar-link-active-color: var(--gold-accent); /* Gold for active/hover */
    
    --dropdown-bg-color: rgba(17, 45, 50, 0.92); /* Darker, less transparent dropdown */
    --dropdown-border-color: rgba(255, 255, 255, 0.15);
    --dropdown-link-color: rgba(255, 255, 255, 0.85);
    --dropdown-link-hover-bg: rgba(255, 255, 255, 0.1);
    --dropdown-link-hover-color: #ffffff;
    /* Active dropdown item uses gold accent */
    --dropdown-link-active-bg: rgba(var(--bs-warning-rgb), 0.15); /* Use Bootstrap's warning (often goldish) RGBA value for subtlety */
    --dropdown-link-active-color: var(--gold-accent); 
}
  

/* Global Styles */
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  background-color: #112d32;
  color: #f2f2f2;
  transition: all 0.3s ease-in-out;
  letter-spacing: 0.015em;
}

/* Elegant Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 300;
  color: #f9f9f9;
  letter-spacing: 0.02em;
  margin-bottom: 0.75em;
  line-height: 1.3;
}

h3, h4 {
    color: #ffffff;
    border-left: 4px solid var(--gold-accent);
    padding-left: 1rem;
}

/* p {
    margin-bottom: 1.25rem;
    max-width: 750px;
}
 */  
/* Accent Links */
a {
    color: var(--gold-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #e7c861;
    text-decoration: underline;
}

ul {
    margin-top: 2rem;
    margin-bottom: 2rem;
}
ul {
    padding-left: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}
  
ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Section Padding */
section {
  padding: 4rem 0;
}

blockquote, .quote {
    font-style: italic;
    color: #ccc;
    border-left: 3px solid var(--gold-accent);
    padding-left: 1rem;
    margin-top: 2rem;
}

hr.divider {
    border: 0;
    height: 2px;
    background-image: linear-gradient(to right, transparent, var(--gold-accent), transparent);
    margin: 3rem auto;
    width: 60%;
    opacity: 0.6;
}

/* Subtle Glows for Text (use with care) */
.text-glow {
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.08);
}

/* Ambient Card/Image Shadows */
.shadow-elegant {
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.45);
}

/* Smooth transitions */
* {
  transition: all 0.3s ease-in-out;
}


/* Elegant glassy navbar */
.navbar {
    background-color: rgba(17, 45, 50, 0.6); /* midnight teal + transparency */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease-in-out;
}
  
/* Nav brand = elegant gold */
.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #d4af37;
    letter-spacing: 1px;
}

/* Brand hover effect */
.navbar-brand:hover {
    color: #fffce6;
}

/* Nav links */
.navbar-nav .nav-link {
    color: #f1f1f1;
    font-weight: 600;
    padding-left: 1rem;
    padding-right: 1rem;
    transition: all 0.2s ease-in-out;
}

/* Active + hover nav links */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--gold-accent);
    transform: scale(1.02);
}
.dropdown-menu a.dropdown-item:hover {
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--gold-accent);
}
  
/* Dropdown */
.dropdown-menu {
    background-color: rgba(31, 93, 109, 0.648);
    border: 1px solid rgba(255, 255, 255, 0.328); /* soft border */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* ambient drop shadow */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
  
.dropdown-item {
    color: #ffffff;
}
.dropdown-item.disabled {
    color: #b1b6bc;
}
  
.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: #fffce6;
}
  
  /* Language button */
  #navbarLangDropdown {
    background-color: rgba(31, 93, 109, 0.648);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.328);
    font-weight: 300;
  }
  
  #navbarLangDropdown:hover {
    background-color: rgba(255, 255, 255, 0.15);
  }
  
  /* Ensure navbar is above everything else */
  .navbar {
    z-index: 1030;
  }
  
  .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.4);
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }

/************** HERO SECTION ****************/
.hero-section {
    /* position: relative; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    height: 100vh;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6)),
                url('/images/index-hero.jpg') center/cover no-repeat;
    color: white;
    padding: 2rem;
}

.hero-albinod {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)),
                url('/images/caviars/albino.jpg') center/cover no-repeat;
    height: 75vh;
}
  
.hero-section h1 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    /* text-shadow: 0 0 20px #292929, 0 0 20px #292929, 0 0 20px #292929, 0 0 20px #292929, 0 0 20px #292929, 0 0 20px #292929, 0 0 20px #292929; */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}
  
.hero-section p {
    /* font-size: 1.25rem; */
    font-weight: 300;
    color: #eee;
    margin-top: 1rem;
    /* text-shadow: 0 0 20px #292929, 0 0 20px #292929, 0 0 20px #292929, 0 0 20px #292929, 0 0 20px #292929, 0 0 20px #292929, 0 0 20px #292929; */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}
  
.hero-section .btn {
    margin-top: 2rem;
    padding: 0.75rem 1.75rem;
    border: 1px solid var(--gold-accent);
    background: #0000007b;
    color: var(--gold-accent);
    font-weight: 500;
    transition: all 0.3s ease;
}
  
.hero-section .btn:hover {
    background-color: var(--gold-accent);
    color: #111;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}


/* ============================================ */
/* Contact Hero Section             */
/* ============================================ */

.contact-hero-section {
    position: relative; /* Required for absolute positioning of overlay */
    height: 75vh; /* Target height: 75% of viewport height */
    min-height: 450px; /* Minimum height for very short screens */
    background-image: url('/images/contact-hero-img.jpg'); /* !! REPLACE WITH YOUR IMAGE PATH !! */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex; /* Enable flexbox for vertical centering */
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
    color: #ffffff; /* White text color */
    overflow: hidden; /* Prevent potential overflow issues */
}

/* Optional Overlay */
.contact-hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Black overlay with 40% opacity - adjust as needed */
    z-index: 1; /* Position behind content */
}

/* Content Styling */
.contact-hero-section .hero-content {
    position: relative; /* Ensure content is above overlay */
    z-index: 2;
    max-width: 850px; /* Max width for readability */
    padding: 20px; /* Spacing around content */
}

.contact-hero-section .hero-title {
    font-weight: 300; /* Lighter font weight for elegance */
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Text shadow for readability */
}

.contact-hero-section .hero-subtitle {
    font-weight: 300;
    margin-bottom: 2.5rem; /* Space before scroll indicator */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* Text shadow */
}

/* Optional Scroll Down Indicator Styling */
.contact-hero-section .scroll-down-indicator {
    display: inline-block; /* Allows margin/padding */
    color: rgba(255, 255, 255, 0.7); /* Slightly transparent white */
    font-size: 2rem; /* Icon size */
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-decoration: none; /* Remove underline from link */
}

.contact-hero-section .scroll-down-indicator:hover {
    color: rgba(255, 255, 255, 1); /* Fully opaque on hover */
    transform: translateY(5px); /* Slight move down effect */
}

@media (max-width: 768px) {
    .contact-hero-section {
        height: 75vh; /* Slightly reduce height on smaller screens */
        min-height: 350px;
    }

    .hero-section {
        padding: 0.7rem;
    }
    .contact-hero-section .hero-title {
        font-size: 2.0rem; /* Adjust title size */
    }

    .contact-hero-section .hero-subtitle {
        font-size: 1.0rem; /* Adjust subtitle size */
        margin-bottom: 1rem;
    }

     .contact-hero-section .scroll-down-indicator {
        font-size: 1.8rem;
     }
}

/********** SAFFRON HERO SECTION **************/
.saffron-hero-section {
    position: relative;
    height: 95vh; /* Adjust height as desired */
    min-height: 450px;
    /* !! IMPORTANT: Replace with your saffron hero image !! */
    background-image: url('/images/crocuses.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}
.saffron-hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Adjust overlay: more darkness = higher last number (e.g., 0.5) */
    background-color: rgba(0, 0, 0, 0.35); 
    z-index: 1;
}
.saffron-hero-section .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px; 
    padding: 20px;
}
.saffron-hero-section .hero-title {
    font-weight: 300; /* Lighter weight */
    font-size: 3rem; /* Responsive size */
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}
.saffron-hero-section .hero-subtitle {
    font-weight: 300;
    font-size: 1.5rem; /* Responsive size */
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}
.saffron-hero-section .scroll-down-indicator {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}
.saffron-hero-section .scroll-down-indicator:hover {
    color: rgba(255, 255, 255, 1);
    transform: translateY(5px);
}
@media (max-width: 768px) {
    .saffron-hero-section { height: 85vh; min-height: 350px; }
    .saffron-hero-section .hero-title { font-size: 2.3rem; }
    .saffron-hero-section .hero-subtitle { font-size: 1.1rem; }
    .saffron-hero-section .scroll-down-indicator { font-size: 1.8rem; }
}



/* --------------------------------------
   Teaser Section Styles
----------------------------------------- */
.teaser-section {
    background-color: #173a41; /* #1e1e1e; */
}
  
.teaser-card-bootstrap {
    background-color: #112d32; /* #2a2a2a; */
    border: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
  
.teaser-card-bootstrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
  
.teaser-card-bootstrap .card-body {
      padding: 2em 1em 1em 1em;
      color: #ddd;
}

.teaser-card-title {
    color: var(--gold-accent);
    margin-bottom: 1rem;
    border-left: none;
}

.teaser-card-text {
    color: #ddd;
    /* flex-grow: 1; */
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

/* Ensure button text color is white (it's btn-outline-light) */
.teaser-card-bootstrap .btn-outline-light {
      border-color: rgba(255, 255, 255, 0.5);
      color: #fff;
}

.teaser-card-bootstrap .btn-outline-light:hover {
      background-color: var(--gold-accent);
      color: #2a2a2a;
}







/* 
.teaser-section {
    background-color: #1e1e1e;
    padding: 4rem 2rem;
    text-align: center;
}

.teaser-section h2 {
    color: #fff;
    margin-bottom: 2rem;
}

.teaser-card {
    background-color: #2a2a2a;
    border: none;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.teaser-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.teaser-card h4 {
    color: var(--gold-accent);
    margin-bottom: 1rem;
}

.teaser-card p {
    color: #ddd;
}

.teaser-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 0.75rem;
}
 */

/* --------------------------------------
   Step 8: Teaser Section Styles
----------------------------------------- */
/* 
.teaser-section {
    background-color: #1e1e1e;
    padding: 4rem 2rem;
    text-align: center;
}
  
.teaser-section h2 {
    color: #fff;
    margin-bottom: 2rem;
}
  
.teaser-card {
    background-color: #2a2a2a;
    border: none;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
  
.teaser-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
  
.teaser-card h4 {
    color: var(--gold-accent);
    margin-bottom: 1rem;
}
  
.teaser-card p {
    color: #ddd;
}
  
.teaser-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 0.75rem;
} */

/* --------------------------------------
   Step 10: Utility Subtle Heading
----------------------------------------- */

.h4-subtle {
    font-weight: 400;
    color: #bbbbbb;
    letter-spacing: 0.01em;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.price-tag {
    border: none;
    padding: 0;
    margin: 0;
}
.vat-tag {
    font-size: 12px;
    font-style: italic;
    color: #a8a8a8;
}


/* --------------------------------------
    Step 9: Caviar Card Grid Section
----------------------------------------- */
  
.caviar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 1rem;
}

.caviar-card {
    position: relative;
    background-color: #143c3f;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform, box-shadow;
    text-align: center;
    padding-bottom: 1.5rem;
}

.caviar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
}

.caviar-card img {
    width: 100%;
    height: auto;
    border-bottom: 4px solid var(--gold-accent);
}

.caviar-card h4 {
    color: var(--gold-accent);
    font-size: 1.5rem;
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
}

.caviar-card p {
    color: #e0e8e4;
    padding: 0 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.caviar-card a {
    display: inline-block;
    margin-top: 1rem;
    color: var(--gold-accent);
    font-weight: 500;
    transition: color 0.3s ease;
}

.caviar-card a:hover {
    color: #e7c861;
    text-decoration: underline;
}

/********* FOOTER START ******************/

/* ============================================ */
/* Footer Styling                             */
/* ============================================ */

.site-footer {
    background-color: #f6f3f0; /* Off-white background */
    color: #212529;          /* Default dark text */
    padding-top: 4rem;       /* Generous padding above columns */
    padding-bottom: 2rem;    /* Padding below copyright */
    font-size: 0.95rem;      /* Slightly smaller base font for footer */
    line-height: 1.7;        /* Improve readability */
}

/* --- Footer Columns General --- */
.site-footer .row:first-child > div { /* Target the first row's columns */
    margin-bottom: 2rem; /* Ensure spacing below columns on mobile */
}

/* --- Column 1: Logo & Tagline --- */
.footer-logo {
    max-height: 50px; /* Adjust as needed */
    margin-bottom: 0.75rem;
    opacity: 0.9; /* Slightly subtle logo */
}

.site-footer h5 { /* Brand Name */
    font-weight: 600; /* Bolder than standard text */
    margin-bottom: 0.5rem;
    color: #112d32; /* Use main site dark green for emphasis */
}

.footer-tagline {
    /* Uses 'small text-muted' classes from PHP */
    font-style: italic; /* Keep italic */
    opacity: 0.8; /* Slightly more subtle */
}

/* --- Column 2 & 3: Titles (h6) --- */
.footer-title {
    font-weight: 600;      /* Bold title */
    margin-bottom: 1.25rem; /* Space below title */
    text-transform: uppercase; /* Optional: Uppercase for distinction */
    font-size: 0.85rem;     /* Smaller font size for titles */
    letter-spacing: 0.8px; /* Add some letter spacing */
    color: #112d32;        /* Use main site dark green */
}

/* --- Column 2: Explore Links --- */
.footer-links li {
    margin-bottom: 0.6rem; /* Space between main link items */
}

.footer-links a {
    color: #212529; /* Standard text color */
    text-decoration: none;
    transition: color 0.2s ease-in-out, padding-left 0.2s ease-in-out; /* Smooth transitions */
    display: inline-block; /* Allows padding */
}

.footer-links a:hover,
.footer-links a:focus {
    color: #8B795E; /* Muted Gold/Bronze Accent - CHANGE IF YOU HAVE A BRAND ACCENT */
    /* Or use main dark green: color: #112d32; */
    padding-left: 5px; /* Subtle indent on hover */
    text-decoration: none; /* Keep no underline on hover */
}

/* Active state for footer links */
/* Style both parent and child active links similarly */
.footer-links a.active,
.footer-links a.active-parent { 
    color: #112d32; /* Main dark green for active */
    font-weight: 600; /* Bold */
}
/* Keep active style on hover */
.footer-links a.active:hover,
.footer-links a.active-parent:hover {
     color: #112d32; 
     padding-left: 5px;
}

/* Caviar sublist styling */
.footer-links .ms-3 > ul {
     padding-left: 0.75rem; /* Indentation for sublist */
     margin-top: 0.3rem;  /* Space above sublist */
}
.footer-links .ms-3 > ul li {
     margin-bottom: 0.3rem; /* Tighter spacing for sub-items */
}
.footer-links .ms-3 > ul li a {
     font-weight: 400; /* Normal weight for sub-items unless active */
}
.footer-links .ms-3 > ul li a.active {
     font-weight: 600; /* Bold active sub-item */
      color: #112d32;
}


/* --- Column 3: Contact Info --- */
.site-footer .col-md-4:last-child p { 
    margin-bottom: 0.75rem; /* Consistent spacing */
    /* text-muted class applied in PHP for most */
}
.site-footer .col-md-4:last-child p:last-child {
    margin-bottom: 0; 
}

/* Ensure email link inherits hover style */
.site-footer .col-md-4:last-child a {
     color: inherit; /* Inherit muted color */
     text-decoration: none;
     transition: color 0.2s ease-in-out;
}
.site-footer .col-md-4:last-child a:hover,
.site-footer .col-md-4:last-child a:focus {
      color: #8B795E; /* Accent hover */
      /* Or use main dark green: color: #112d32; */
      text-decoration: none; /* Optional: underline; */
}

/* Icon alignment refinement */
.site-footer .bi {
    position: relative;
    top: -1px; /* Adjust as needed */
    margin-right: 0.6rem !important; /* Ensure consistent icon spacing override */
}
.site-footer .d-flex .bi { /* Specific adjustments for flex alignment */
     top: 2px; /* Align better with first line */
}


/* --- Footer Bottom: Legal & Copyright --- */
.site-footer .border-top {
    border-color: #e5e0da !important; /* Softer border color */
}

.footer-legal-links a {
    /* text-decoration-none text-muted classes applied in PHP */
     transition: color 0.2s ease-in-out;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus {
     color: #212529 !important; /* Darken muted text on hover */
     text-decoration: underline;
}

/* Active state for legal links */
.footer-legal-links a.active {
    color: #212529 !important; 
    font-weight: 500; /* Slightly bolder active legal link */
    text-decoration: underline; /* Underline active legal link */
}

.footer-bottom {
    /* small text-muted classes applied in PHP */
    padding-top: 0.5rem; 
}

/********* FOOTER END ******************/






@media (min-width: 992px) {
    .caviar-grid {
      padding: 0 3rem;
    }
}
@media (max-width: 991.98px) { /* Bootstrap lg breakpoint */
    .navbar-collapse {
        padding-left: 15px; /* Adjust to move menu items & language dropdown */
    }
}