/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&family=Playfair+Display:wght@400;700&family=Cormorant+Garamond:ital,wght@1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');

body {
    font-family: 'Playfair Display', serif;
    background-color: #f9f6f2;
    color: #333;
    padding-top: 76px;
}

/* Navbar Styles */
.navbar {
    background-color: #1a1a1a;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff !important;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

.navbar-nav {
    margin-left: auto;
}

.nav-item {
    margin: 0 0.5rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover,
.nav-link:focus {
    color: #fff !important;
}

.nav-link.active {
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.dropdown-menu {
    background-color: #1a1a1a;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    border-radius: 8px;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.7rem 1.5rem;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.dropdown-item.active {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #1a1a1a;
        padding: 1rem;
        border-radius: 8px;
        margin-top: 0.5rem;
    }

    .nav-item {
        margin: 0.25rem 0;
    }

    .dropdown-menu {
        background-color: rgba(255, 255, 255, 0.05);
        margin-top: 0;
        border-radius: 4px;
    }

    .navbar-nav .dropdown-menu {
        padding: 0.5rem;
    }
}

/* Scroll behavior */
.navbar.scrolled {
    background-color: rgba(26, 26, 26, 0.95);
    padding: 0.8rem 0;
}

/* Hero Section */
header {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

header h1 {
    font-size: 3.5rem;
    font-weight: bold;
    font-family: 'Dancing Script', cursive;
}

header .btn {
    font-size: 1.3rem;
    padding: 0.75rem 2rem;
    margin-top: 1rem;
    background: #ff4081;
    border: none;
    border-radius: 30px;
    color: white;
    transition: background 0.3s;
}

header .btn:hover {
    background: #f50057;
}

/* Menu Section */
section#menu {
    background: #fff;
    padding: 4rem 0;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #6a11cb;
    margin-bottom: 2rem;
    font-family: 'Dancing Script', cursive;
}

.card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.card-img-top {
    height: 220px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.card-body {
    background: #e3f2fd;
    padding: 1.5rem;
    text-align: center;
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0d47a1;
    font-family: 'Dancing Script', cursive;
}

.card-text {
    color: #37474f;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    color: white;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 1.1rem;
    font-weight: bold;
    font-family: 'Dancing Script', cursive;
}