:root {
    --primary-color: #A58A75;
    --secondary-color: #905C5C;
    --light-color: #F7F7F7;
    --dark-color: #413645;
    --font-primary: 'Cormorant Garamond', serif;
    --font-secondary: 'Labrada', serif;
}
/* Base icon styles */
.icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
}

#cookies-banner{
    position:fixed; 
    bottom:0; 
    left:0; 
    right:0; 
    background:#333; 
    color:white; 
    padding:20px; 
    text-align:center; 
    z-index:9999; 
    box-shadow:0 -2px 10px rgba(0,0,0,0.3);
    max-width: 500px;
    display: none;
}

#cookies-banner div {
    margin:0 auto;
}

#cookies-banner button {
    color:white; 
    border:none; 
    padding:10px 20px; 
    margin:0 10px;
    border-radius:4px; 
    cursor:pointer;
}


/* Color variations */
.icon-white { fill: white; }
.icon-dark { fill: var(--dark-color); }


img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: var(--font-secondary);
    color: var(--dark-color);
    background-color: #fff;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
}

a {
    color: white;
    text-decoration: none;
}

.section-title {
    font-family: var(--font-primary);
    text-align: center;
    color: var(--primary-color);
    font-weight: normal;
    margin-bottom: 2rem;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:focus:not(:focus-visible) {
    color: inherit;
    outline: none;
    box-shadow: none;
}
/* Top Info Bar */
.top-info-bar {
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 0;
    font-size: 0.8rem;
}

.top-info-bar a:hover {
    color: var(--dark-color);
}

/* Navigation */
.navbar {
    background-color: #A58A75;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-family: var(--font-primary);
    color: white;
}

.nav-link {
    color: white;
    margin: 0 10px;
    transition: color 0.2s;
}



.nav-link:hover {
    color: var(--secondary-color);
}


.btn-custom-light {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 15px 20px;
    font-weight: normal;
    transition: color 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: large;
}


.btn-custom-dark {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 15px 20px;
    font-weight: normal;
    transition: color 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: large;
}

.btn-custom-dark:hover {
    color: var(--dark-color);
    background-color: var(--secondary-color);
}
.btn-custom-light:hover {
    color: var(--dark-color);
    background-color: var(--primary-color);
}

/* Ensure proper alignment on larger screens */
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
    
    .navbar-nav {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Adjust for mobile view */
@media (max-width: 991px) {
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }
}
/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/header.webp");
    background-size: cover;
    background-position: center center;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}


.logo {
    color: white;
    font-weight: normal;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: lighter;
}

.hero-text {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}



/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.about-img {
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Services Section */
.services-section {
    padding: 5rem 0;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.service-card {
    background-color: white;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.card-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: normal;
    color: var(--primary-color);
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

.price {
    margin-top: 1.5rem;
    font-weight: 700;
    text-align: center;
    font-size: larger;
    color: var(--secondary-color);
}

/* Price List Section */
.price-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}
.category-divider {
    height: 15px;
    margin: 10px 0;
}
.price-list {
    max-width: 800px;
    margin: 0 auto;
}

.price-item {
    padding: 15px 0;
    border-bottom: 1px solid var(--primary-color);
}



/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
}

.gallery-img {
    border-radius: 5px;
    transition: transform 0.3s;
}

.gallery-img:hover {
    transform: scale(1.05);
}
/* Gallery Lightbox enhancement */
.gallery-img {
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.gallery-img:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Improve lightbox overlay appearance */
.lb-outerContainer {
    border-radius: 8px;
}

.lb-data .lb-caption {
    font-family: var(--font-primary);
    font-size: 18px;
}

.lb-data .lb-details {
    width: 100%;
    text-align: center;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: larger;
    color: var(--dark-color);
}
.contact-item a {
    color: var(--dark-color);
}

.contact-item i {
    margin-right: 10px;
    width: 20px;
}

.map-container {
    border-radius: 5px;
    overflow: hidden;
}
.contact-info a{
    transition: color 0.2s;
}
.contact-info a:hover {
    color: var(--secondary-color);
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-heading {
    font-family: var(--font-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: normal;
}

.footer-element {
    margin-bottom: 10px;
    color: white;
    font-size: 20px;
    font-weight: normal;
}

.footer-element a {
    transition: color 0.2s;
}

.footer-element i {
    margin-right: 10px;
}

.footer-element a:hover {
    color: var(--dark-color);
}

.footer-links {
    list-style: none;
    padding-left: 0;
}
.footer a {
    cursor: pointer;
}



.copyright a:hover{
    color: var(--dark-color);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .navbar .container {
        max-width: 100%;
    }
    .map-container{
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: 70vh;
    }
    
    .about-img {
        margin-top: 2rem;
    }
    
}

@media (max-width: 575px) {
    .hero-section {
        min-height: 500px;
    }
}



/* hamburger animation */
.hamburger-icon {
  position: relative;
  width: 24px;
  height: 18px;
  display: inline-block;
}


.hamburger-icon span {
  position: absolute;
  height: 2px;
  width: 100%;
  background: white;
  border-radius: 2px;
  left: 0;
  transition: .25s ease-in-out;
}

.hamburger-icon span:nth-child(1) {
  top: 0;
}

.hamburger-icon span:nth-child(2) {
  top: 8px; 
}

.hamburger-icon span:nth-child(3) {
  top: 16px; 
}


.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.75rem;
  background: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.modal a{
    color: var(--dark-color);
    text-decoration: none;
}
.modal a:hover {
    color: var(--secondary-color);
}

.modal .btn-primary {
    background-color: var(--primary-color);
    border: none;
    color: white;
}

.modal .btn-primary:hover {
    background-color: var(--secondary-color);
    color: white;
}