:root {
    --primary: #c0392b;
    /* Example red */
    --secondary: #2c3e50;
    /* Dark blue/grey */
    --light: #f8f9fa;
    --dark: #1a1a1a;
    --text: #333;
    --white: #fff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.6;
    background: var(--light);
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark);
    /* Black text as requested */
    text-transform: uppercase;
}

.logo-img {
    height: 50px;
    /* Adjust height as needed */
    width: auto;
}

.logo-text {
    line-height: 1;
}

.main-nav ul {
    display: flex;
    gap: 1.5rem;
}

.main-nav a {
    font-weight: 500;
}

.main-nav a:hover {
    color: var(--primary);
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Hero */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/hero-bg.jpg') center/cover no-repeat;
    background-color: var(--secondary);
    /* Fallback */
    color: var(--white);
    text-align: center;
    padding: 8rem 1rem;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: #a93226;
}

.btn-secondary {
    background: var(--white);
    color: var(--dark);
    border: 1px solid var(--white);
}

.btn-secondary:hover {
    background: var(--light);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.cta-banner {
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.cta-banner h2 {
    color: var(--white);
}

/* Footer */
.site-footer {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('../img/grill-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 3rem 0 1rem;
}

.site-footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.site-footer h3 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: #ffd700;
    /* Gold */
}

.social-links {
    display: flex !important;
    gap: 15px !important;
    margin-bottom: 20px !important;
    padding-top: 10px !important;
    clear: both !important;
}

.social-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    background-color: rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
    color: var(--white);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.social-icon.facebook:hover {
    background: #1877f2;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.tiktok:hover {
    background: #000000;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        z-index: 999;
    }

    .main-nav.active {
        display: block !important;
        animation: slideDown 0.3s ease-out;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav a {
        display: block;
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid #eee;
    }

    .main-nav li:last-child a {
        border-bottom: none;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Implement JS toggle later */
    .mobile-menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section h2 {
        font-family: var(--font-heading);
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 2rem;
        color: var(--secondary);
    }

    /* Mobile Background Fixes */
    .site-footer {
        background-image: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('../img/mobil-footer.jpg') !important;
        background-attachment: scroll !important;
        background-position: center top !important;
        background-size: cover !important;
    }
}

/* Global Gallery Styles */
.about-gallery {
    margin-top: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-gallery h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-family: var(--font-heading, serif);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-card {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: white;
}

.gallery-card:hover {
    transform: translateY(-5px);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}