/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
}

/* Top Bar Styles */
.top-bar {
    background: linear-gradient(to right, #D2B48C, #C4A484);
    padding: 10px 0;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%);
    background-size: 3px 3px;
    opacity: 0.2;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding: 5px 0;
}

.top-bar a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.3s ease;
}

.top-bar a:hover::after {
    width: 100%;
}

.top-bar a:hover {
    transform: translateY(-1px);
}

.top-bar i {
    font-size: 1rem;
}

/* Add styles for navbar scroll effect */
.navbar.scrolled {
    background: #D2B48C;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar.scrolled .nav-link {
    color: white !important;
}

.navbar.scrolled .nav-link::after {
    background: white;
}

.navbar.scrolled .nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.navbar.scrolled .navbar-brand {
    background: transparent;
    box-shadow: none;
}

@media (max-width: 768px) {
    .navbar-brand {
        padding: 8px 15px;
    }
    
    .navbar-brand img {
        height: 50px;
    }

    .hero-section {
        margin-top: -60px; /* Adjust for smaller screens */
    }

    .top-bar {
        font-size: 0.8rem;
        padding: 8px 0;
    }
    
    .top-bar-content {
        justify-content: center;
        gap: 20px;
    }
}

/* Navbar Styles */
.navbar {
    background: rgba(210, 180, 140, 0);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background 0.3s ease;
    padding: 20px 0;
}

.navbar-brand {
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.navbar-brand img {
    height: 60px;
    width: auto;
    transition: height 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.nav-link {
    color: white !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 10px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Hero Section Styles */
.hero-section {
    height: 100vh;
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: -76px; /* Negative margin to pull content up under navbar */
}

.hero-content {
    z-index: 2;
    padding: 20px;
    max-width: 800px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-section h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-section .btn {
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: white;
    color: #333;
    border: none;
    font-weight: 500;
}

.hero-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background: #D2B48C;
    color: white;
}

/* Featured Products Section Styles */
.featured-products {
    padding: 120px 0;
    background-color: #FAF9F6;
    position: relative;
    overflow: hidden;
}

.featured-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(45deg, #D2B48C15 30%, #FAF9F6 70%);
    transform: skewY(-4deg);
    transform-origin: top right;
}

.featured-products h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 70px;
    font-size: 2.8rem;
    position: relative;
}

.featured-products h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #D2B48C;
}

/* Product Card Styles */
.product-card {
    background: white;
    border-radius: 30px;
    padding: 40px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #D2B48C08, #FAF9F608);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 45px rgba(210, 180, 140, 0.2);
}

.product-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 30px;
    transition: transform 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.03);
}

.product-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.product-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1rem;
}

/* Price Tag Styles */
.price-tag {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.original-price {
    font-size: 1.4rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 15px;
}

.discounted-price {
    font-size: 1.8rem;
    color: #D2B48C;
    font-weight: 600;
}

.discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #D2B48C;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 2;
}

/* Button Styles */
.btn-shop-now {
    background-color: #D2B48C;
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 1.1rem;
    font-weight: 500;
}

.btn-shop-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #C4A484;
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-shop-now:hover {
    color: white;
    transform: translateY(-2px);
}

.btn-shop-now:hover::before {
    width: 100%;
}

/* Category Title Styles */
.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #333;
    margin: 60px 0 40px;
    text-align: center;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #D2B48C;
}

/* Separator Section Styles */
.separator-section {
    padding: 120px 0;
    background: #F8F3E9;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.separator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, 
        transparent 0%,
        rgba(139, 69, 19, 0.1) 25%,
        rgba(139, 69, 19, 0.3) 50%,
        rgba(139, 69, 19, 0.1) 75%,
        transparent 100%
    );
}

.separator-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, 
        transparent 0%,
        rgba(139, 69, 19, 0.1) 25%,
        rgba(139, 69, 19, 0.3) 50%,
        rgba(139, 69, 19, 0.1) 75%,
        transparent 100%
    );
}

.separator-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 60px 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.05);
}

.separator-content::before,
.separator-content::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, transparent, #8B4513, transparent);
}

.separator-content::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.separator-content::after {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.separator-icon {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.separator-icon::before,
.separator-icon::after {
    content: '•';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #8B4513;
    opacity: 0.5;
    font-size: 1.5rem;
}

.separator-icon::before {
    left: -30px;
}

.separator-icon::after {
    right: -30px;
}

.separator-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #5C4033;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.separator-section p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #6B4423;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 600px;
}

@media (max-width: 768px) {
    .separator-section {
        padding: 80px 0;
    }

    .separator-content {
        padding: 40px 20px;
    }

    .separator-section h2 {
        font-size: 2.2rem;
    }

    .separator-section p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .separator-icon {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .separator-icon::before,
    .separator-icon::after {
        display: none;
    }
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* Media Queries */
@media (min-width: 992px) {
    .navbar-brand img {
        height: 80px;
    }
}

/* Add styles for navbar scroll effect */
.navbar.scrolled {
    background: #D2B48C;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar.scrolled .nav-link {
    color: white !important;
}

.navbar.scrolled .nav-link::after {
    background: white;
}

.navbar.scrolled .nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.navbar.scrolled .navbar-brand {
    background: transparent;
    box-shadow: none;
}

@media (max-width: 768px) {
    .navbar-brand {
        padding: 8px 15px;
    }
    
    .navbar-brand img {
        height: 50px;
    }

    .hero-section {
        margin-top: -60px; /* Adjust for smaller screens */
    }

    .top-bar {
        font-size: 0.8rem;
        padding: 8px 0;
    }
    
    .top-bar-content {
        justify-content: center;
        gap: 20px;
    }

    .featured-products {
        padding: 80px 0;
    }

    .product-card {
        padding: 25px;
    }

    .product-card img {
        height: 300px;
    }

    .product-card h3 {
        font-size: 1.5rem;
    }

    .discounted-price {
        font-size: 1.5rem;
    }

    .separator-section {
        padding: 60px 0;
    }

    .separator-section h2 {
        font-size: 2rem;
    }

    .separator-section p {
        font-size: 1rem;
    }

    .separator-icon {
        font-size: 2.5rem;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .hero-section .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(to right, #2c2c2c, #333333);
    color: #f5f5f5;
    padding: 80px 0 30px;
    margin-top: 80px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #D2B48C, #C4A484);
}

.footer-content {
    padding: 0 20px;
    margin-bottom: 40px;
}

.footer h4 {
    color: #D2B48C;
    font-size: 1.6rem;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #D2B48C;
}

.footer address {
    margin: 0;
}

.footer address p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
}

.footer address i {
    color: #D2B48C;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.footer a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer a:hover {
    color: #D2B48C;
    transform: translateX(5px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #D2B48C;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.9rem;
    color: #999;
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 30px;
        text-align: center;
    }

    .footer h4 {
        margin-top: 30px;
    }

    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer address p {
        justify-content: center;
    }

    .footer-links a::before {
        display: none;
    }

    .footer a:hover {
        transform: none;
    }
}

/* Newsletter Styles */
.newsletter-text {
    color: #e0e0e0;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.newsletter-form .input-group {
    display: flex;
    gap: 10px;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 15px;
    color: white;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #D2B48C;
    box-shadow: none;
    outline: none;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.btn-subscribe {
    background: #D2B48C;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-subscribe:hover {
    background: #C4A484;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .newsletter-form .input-group {
        flex-direction: column;
    }

    .newsletter-form .form-control,
    .btn-subscribe {
        width: 100%;
    }
}

/* Products Page Styles */
.products-section {
    padding: 60px 0;
    background-color: #FAF9F6;
}

.filters-container {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 20px;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
}

.form-check {
    margin-bottom: 10px;
}

.form-check-label {
    color: #666;
    font-size: 0.95rem;
}

.price-range {
    padding: 10px 0;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: #666;
    font-size: 0.9rem;
}

#applyFilters {
    background: #D2B48C;
    border: none;
    width: 100%;
    margin-bottom: 10px;
}

#resetFilters {
    background: #666;
    border: none;
    width: 100%;
}

/* Products Grid Styles */
.products-grid {
    padding-left: 20px;
}

.product-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
}

.product-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.product-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.filters-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .products-grid {
        padding-left: 0;
    }
    
    .product-card {
        padding: 20px;
    }
    
    .product-card img {
        height: 200px;
    }
}

@media (max-width: 991px) {
    .filters-container {
        margin-bottom: 30px;
        position: static;
    }

    .products-grid {
        padding-left: 0;
    }
}

/* Product Modal Styles */
.modal-content {
    border: none;
    border-radius: 15px;
}

.modal-header {
    padding: 1rem 1rem 0;
}

.modal-body {
    padding: 2rem;
}

.btn-close {
    background-color: #f8f9fa;
    padding: 0.75rem;
    border-radius: 50%;
    opacity: 1;
}

.product-modal-image {
    position: relative;
    margin-bottom: 2rem;
}

.product-modal-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-modal-info h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.product-meta p {
    font-size: 0.95rem;
}

.product-description h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.product-description p {
    color: #6c757d;
    line-height: 1.6;
}

.product-category .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background-color: #f8f9fa !important;
    color: #212529 !important;
}

/* About Hero Section */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-top: -76px;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    padding: 100px 0;
}

.about-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.hero-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.hero-divider span {
    width: 60px;
    height: 3px;
    background: #D2B48C;
    position: relative;
}

.hero-divider span::before,
.hero-divider span::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #D2B48C;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.hero-divider span::before {
    left: -12px;
}

.hero-divider span::after {
    right: -12px;
}

/* About Content Section */
.about-content {
    padding: 80px 0;
    background-color: #FAF9F6;
}

.about-text {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    margin-top: -100px;
    position: relative;
    z-index: 3;
}

.about-card {
    padding: 40px;
    margin-bottom: 50px;
    border-radius: 15px;
    background: #fff;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(210, 180, 140, 0.2);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(210, 180, 140, 0.2);
}

.about-card h3 {
    font-family: 'Playfair Display', serif;
    color: #333;
    margin: 25px 0;
    font-size: 2rem;
}

.about-icon {
    width: 80px;
    height: 80px;
    background: #D2B48C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.about-icon i {
    font-size: 32px;
    color: white;
}

.about-card:hover .about-icon {
    transform: scale(1.1);
    background: #C4A484;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

.about-text .lead {
    font-size: 1.25rem;
    color: #333;
    font-weight: 400;
}

@media (max-width: 768px) {
    .about-hero {
        height: 200px;
        margin-top: -60px;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-text {
        padding: 30px;
        margin-top: -50px;
    }

    .about-card {
        padding: 20px;
    }

    .about-card h3 {
        font-size: 1.5rem;
    }

    .about-text .lead {
        font-size: 1.1rem;
    }
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-top: -76px;
    position: relative;
    overflow: hidden;
    min-height: 40vh;
}

.contact-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

/* Contact Content Section */
.contact-content {
    padding: 80px 0;
    background-color: #FAF9F6;
}

.contact-wrapper {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    margin-top: -100px;
    position: relative;
    z-index: 3;
}

.contact-info {
    padding-right: 30px;
}

.contact-info h2,
.contact-form h2 {
    font-family: 'Playfair Display', serif;
    color: #333;
    margin-bottom: 20px;
    font-size: 2rem;
}

.contact-info .lead {
    color: #666;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 24px;
    color: #D2B48C;
    margin-right: 20px;
    margin-top: 5px;
}

.contact-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #D2B48C;
}

/* Contact Form Styles */
.contact-form {
    background: #fff;
    padding-left: 30px;
    border-left: 1px solid #eee;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    border: 1px solid #ddd;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #D2B48C;
    box-shadow: 0 0 0 0.2rem rgba(210, 180, 140, 0.25);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: #D2B48C;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.btn-submit:hover {
    background: #C4A484;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-hero {
        height: 200px;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-wrapper {
        padding: 30px;
        margin-top: -50px;
    }

    .contact-form {
        padding-left: 0;
        border-left: none;
        margin-top: 40px;
    }

    .contact-info {
        padding-right: 0;
    }
}