/* Website Specific Styles */

:root {
    --hero-overlay: rgba(10, 17, 40, 0.6);
    --bakery-accent: #d4a373;
    /* Warm beige/brown for bakery feel */
    --bakery-light: #faedcd;
}

body {
    background-color: var(--bg-color);
}

/* Navigation */
.site-nav {
    background: var(--card-bg);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-item-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--card-bg);
    min-width: 250px;
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    z-index: 1000;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    color: var(--text-main);
}

.hours-table tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    padding: 0.5rem 0;
}

.hours-table td:first-child {
    font-weight: 600;
    color: var(--primary);
    padding-right: 1rem;
}

.hours-table td:last-child {
    text-align: right;
    color: var(--text-muted);
}

/* Desktop Hover */
@media (min-width: 769px) {
    .nav-item-dropdown:hover .dropdown-content {
        display: block;
    }

    .nav-item-dropdown:hover .fa-angle-down {
        transform: rotate(180deg);
    }
}

/* Mobile/Click Toggle */
.nav-item-dropdown.open .dropdown-content {
    display: block;
}

.nav-item-dropdown.open .fa-angle-down {
    transform: rotate(180deg);
}

.nav-item-dropdown .fa-angle-down {
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        transform: none;
        box-shadow: none;
        background: var(--bg-color);
        border: 1px solid var(--input-border);
        margin-top: 0.5rem;
    }
}

.highlight-link {
    color: var(--primary) !important;
    font-weight: 700 !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    background: url('../images/Screenshot\ 2026-01-15\ 194346.png') no-repeat center center/cover;
    /* In a real scenario, use a real image */
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-overlay);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-slogan {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, background 0.2s;
    display: inline-block;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-hover);
}

.btn-secondary {
    background: white;
    color: var(--primary);
}

.btn-secondary:hover {
    background: #f0f0f0;
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary);
}


/* Features */
.features-section {
    padding: 4rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-muted);
}

/* Sections */
.section-preview {
    padding: 4rem 1.5rem;
    background: var(--bg-color);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--text-main);
}

.link-arrow {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}



/* Location Banner */
.location-preview-banner {
    background: var(--primary);
    color: white;
    padding: 4rem 1.5rem;
    text-align: center;
}

.location-text h2 {
    margin-bottom: 1rem;
}

.location-text p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.site-footer {
    background: var(--primary-dark);
    color: #e2e8f0;
    padding: 4rem 0 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-col h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: opacity 0.2s;
}

.social-links a:hover {
    opacity: 0.8;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 1.5rem;
    font-size: 0.875rem;
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Hide for mobile initially */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--card-bg);
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .gallery-grid-preview {
        grid-template-columns: 1fr;
    }
}