:root {
    --primary-color: #d4af37;
    --primary-dark: #b99929;
    --secondary-color: #1a1a1a;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --text-light: #555;
    --text-dark: #333;
    --bg-dark: #0f0a05;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
    --gold: #D4AF37;
    --gold-light: #e8c96a;
    --gold-dark: #b99929;
    --dark: #1a1a1a;
    --darker: #111;
    --light: #f8f9fa;
    --lighter: #fff;
    --bg: #f5f5f5;
        --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
  
    
    /* Floating Action Buttons */
    .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(45deg, var(--gold-dark), var(--gold));
        color: var(--dark);
        border: none;
        cursor: pointer;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        transition: var(--transition);
        z-index: 99;
        opacity: 0;
        transform: translateY(20px);
    }
    
    .back-to-top.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    .back-to-top:hover {
        transform: translateY(-5px) !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    }
    
    .phone {
        position: fixed;
        bottom: 110px;
        right: 30px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(45deg, var(--gold-dark), var(--gold));
        color: var(--dark);
        cursor: pointer;
        font-size: 20px;
        align-items: center;
        justify-content: center;
        display: flex;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        transition: var(--transition);
        z-index: 99;
        border: none;
        opacity: 0;
        transform: translateY(20px);
    }
    
    .phone.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    .phone:hover {
        transform: translateY(-5px) !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    }
    
    /* Responsive adjustments */
    @media (max-width: 767.98px) {
        .back-to-top,
        .phone {
            width: 50px;
            height: 50px;
            font-size: 18px;
            right: 20px;
        }
        
        .phone {
            bottom: 90px;
        }
    }
    
    @media (max-width: 575.98px) {
        .back-to-top,
        .phone {
            width: 45px;
            height: 45px;
            font-size: 16px;
        }
        
        .phone {
            bottom: 80px;
        }
    }



body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--darker);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, .menu-item-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--gold);
    color: var(--dark);
    padding: 8px 16px;
    z-index: 100;
    transition: var(--transition);
}

.skip-link:focus {
    top: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Modern Glass Navigation */
.navbar {
    height: var(--nav-height);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--gold) !important;
    letter-spacing: 1px;
}



/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 8px 16px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 10px;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    display: block;
}

/* Buttons */
.btn-gold {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-gold:active {
    transform: translateY(0);
}

/* Navigation */
.navbar {
    background-color: var(--secondary-color) !important;
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    color: var(--primary-color) !important;
    font-family: 'Georgia', serif;
    font-size: 1.8rem !important;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-link {
            color: var(--light) !important;
            font-weight: 500;
            position: relative;
            margin: 0 10px;
            transition: var(--transition);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: var(--transition);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--gold) !important;
        }

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
}

.dropdown-item {
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    padding: 0 20px;
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.story-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.story-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.story-image:hover img {
    transform: scale(1.03);
}

.story-content {
    padding-left: 40px;
}

.story-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.signature {
    font-style: italic;
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: white;
}

.service-card {
    text-align: center;
    padding: 40px 25px;
    background-color: var(--light-color);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    margin: 10px 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    height: 150px;
}

.service-icon img {
    max-width: 130px;
    height: auto;
    border-radius: 50%;
    display: block;
    object-fit: cover;
    transition: var(--transition);
}



.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-light);
}

/* Events Section */
.events-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: white;
    padding: 100px 0;
}

.events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.events-section .container {
    position: relative;
    z-index: 2;
}

.event-card {
    display: flex;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    transition: var(--transition);
    overflow: hidden;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.15);
}

.event-date {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 20px;
    text-align: center;
    min-width: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.event-details {
    padding: 25px;
    flex: 1;
}

.event-details h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.event-details p {
    opacity: 0.9;
    margin-bottom: 15px;
}

.booking-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 8px;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
}

.booking-card h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
    text-align: center;
}

.form-control, .form-select {
    padding: 12px 15px;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

/* Why Choose Us */
.why-choose-us {
    background-color: #f9f9f9;
    padding: 100px 0;
    text-align: center;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    background: white;
    padding: 40px 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.feature-title {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-desc {
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
    background-color: var(--light-color);
    padding: 100px 0;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.rating {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.2);
    position: absolute;
    top: -15px;
    left: -10px;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--primary-color);
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Footer */
.coffee-footer {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), 
                url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: white;
    padding: 100px 0 0;
    z-index: 1;
}

.coffee-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: -1;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section {
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
}

.social-icons a:hover {
    color: white;
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-section h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
    transition: var(--transition);
}

.footer-section ul li:hover {
    color: white;
}

.footer-section ul li i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 3px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
    margin-left: 5px;
}

.copyright {
    background-color: black;
    text-align: center;
    padding: 25px 0;
    margin-top: 60px;
}

.copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Floating Buttons */

/* Modal */
.modal-header {
    background-color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .story-content {
        padding-left: 0;
        padding-top: 40px;
    }
    
    .events-section .row>div {
        margin-bottom: 40px;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        min-width: 100%;
        padding: 15px;
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .events-section {
        background-attachment: scroll;
    }
    
    .booking-card {
        padding: 20px;
    }
    
    .testimonial-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .service-card {
        width: 100%;
    }
    
    .service-icon img {
        width: 80px;
        height: 80px;
    }
    
    .navbar-brand {
        font-size: 1.5rem !important;
    }
    
   
}

/* Print Styles */
@media print {
    .navbar, .back-to-top, .phone, .social-icons {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero-section {
        height: auto;
        padding: 50px 0;
        background: white !important;
        color: black !important;
    }
    
    .hero-title, .section-title {
        color: black !important;
        text-shadow: none !important;
    }
    
    a::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        font-weight: normal;
    }
}