:root {
    --primary-color: #C9CF2F;
    /* Lime Green */
    --primary-glow: rgba(201, 207, 47, 0.4);
    --accent-color: #ffffff;
    /* White accents for clean contrast */
    --bg-dark: #1a1a1a;
    /* Lighter Charcoal */
    --bg-darker: #121212;
    /* Deep background for depth */
    --bg-card: #222222;
    /* Lighter card background */
    --text-main: #f5f5f5;
    --text-muted: #d0d0d0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition-fast: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.8;
    /* Slightly airier */
    overflow-x: hidden;
    font-weight: 300;
    /* Minimal base weight */
}

h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    /* Elegant, not too heavy */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Premium Button Styles */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border: 2px solid transparent;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 0.95rem;
    border-radius: 4px;
}

.btn-primary {
    background: var(--primary-color);
    color: #000;
    border: none;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--primary-glow);
    background: #d4da35;
    /* Slightly lighter on hover */
    color: #000;
}

.btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-glow);
    transform: translateY(-3px);
    color: #000;
}

.text-center {
    text-align: center;
}

/* --- Loader --- */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.curtain {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: #000;
    z-index: 1;
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.curtain-left {
    left: 0;
    transform-origin: left;
}

.curtain-right {
    right: 0;
    transform-origin: right;
}

.loader-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: opacity 0.5s ease;
}

.loader-text {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
}

/* Hidden State */
.loader-hidden .curtain-left {
    transform: translateX(-100%);
}

.loader-hidden .curtain-right {
    transform: translateX(100%);
}

.loader-hidden .loader-content {
    opacity: 0;
}

.spinner {
    width: 70px;
    height: 70px;
    border: 3px solid rgba(201, 207, 47, 0.2);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 0.8s ease-in-out infinite;
    box-shadow: 0 0 20px var(--primary-glow);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-fast);
    border-bottom: 2px solid var(--primary-color);
    /* GREEN BORDER */
}

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

.logo {
    font-size: 1.8rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-main);
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
    /* GREEN TEXT ON HOVER */
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    /* THICKER */
    background-color: var(--primary-color);
    /* GREEN BURGER */
    margin: 6px 0;
    transition: var(--transition-fast);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    background: url('../images/dark_angel_hero_steak.png') no-repeat center center/cover;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(26, 26, 26, 1));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    width: 180px;
    height: 180px;
    margin-bottom: 40px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    box-shadow: 0 0 50px var(--primary-glow);
    /* STRONGER GLOW */
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.6);
    object-fit: cover;
    animation: float 6s ease-in-out infinite;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    line-height: 1.1;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
    letter-spacing: -1px;
}

.hero h1 span {
    color: var(--primary-color);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 50px;
    color: #e0e0e0;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.hero .btn {
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* --- About Section --- */
.about {
    padding: 140px 0;
    background: var(--bg-dark);
    position: relative;
    border-bottom: 1px solid rgba(201, 207, 47, 0.1);
    /* SUBTLE GREEN SEPARATOR */
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 3.2rem;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
    border-left: 5px solid var(--primary-color);
    /* GREEN ACCENT BAR */
    padding-left: 20px;
}

.about-text h2 span {
    color: var(--primary-color);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 2px;
    display: block;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 25px;
    /* Alignment fix with h2 */
}

.subtitle::before {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    /* THICKER */
    background-color: var(--primary-color);
}

.about-text p {
    margin-bottom: 25px;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    position: relative;
    z-index: 1;
    display: flex;
    /* CENTERING RESTORED */
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: var(--transition-slow);
    border: 1px solid rgba(201, 207, 47, 0.3);
    /* GREEN BORDER ON IMG */
}

.about-image:hover img {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

/* --- Menu Preview --- */
.menu-preview {
    padding: 140px 0;
    background-color: var(--bg-darker);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-header h2 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 10px;
    display: inline-block;
    border-bottom: 3px solid var(--primary-color);
    /* UNDERLINE HEADER */
    padding-bottom: 10px;
}

.section-header p {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1rem;
    margin-top: 15px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 70px;
}

.menu-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-fast);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(201, 207, 47, 0.1);
    /* SUBTLE GREEN BORDER */
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
    /* GREEN BORDER ON HOVER */
}

.card-image {
    height: 280px;
    overflow: hidden;
    position: relative;
    border-bottom: 2px solid var(--primary-color);
    /* SEPARATOR */
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.menu-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 35px;
    text-align: center;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
}

.card-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* --- Gallery Section --- */
.gallery {
    padding: 140px 0;
    background-color: var(--bg-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: dense;
    gap: 15px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 250px;
    /* Base height */
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
    height: 515px;
    /* (250 * 2) + 15 gap */
}

/* Gallery Responsive Overrides */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item,
    .gallery-item.tall,
    .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
        height: 300px;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-glow);
    transform: scale(1.02);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* --- Contact Section --- */
.contact {
    padding: 140px 0;
    background: var(--bg-dark);
    border-top: 1px solid rgba(201, 207, 47, 0.1);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
    border-left: 5px solid var(--primary-color);
    padding-left: 20px;
}

.info-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.info-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(201, 207, 47, 0.1);
    /* GREEN SHADOW */
}

.info-item i {
    font-size: 2rem;
    color: var(--bg-darker);
    /* ICON COLOR INVERSE */
    background: var(--primary-color);
    /* ICON BG CIRCLE */
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-item h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #fff;
    font-family: var(--font-heading);
}

.social-links {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    /* START GREEN */
    transition: var(--transition-fast);
    font-size: 1.4rem;
    border: 1px solid var(--primary-color);
    /* GREEN BORDER START */
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px var(--primary-glow);
    border-color: var(--primary-color);
}

.contact-form-container {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.booking-card {
    background: var(--bg-card);
    padding: 60px 40px;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-fast);
    animation: cardPulse 4s infinite ease-in-out;
}

@keyframes cardPulse {
    0% {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    }

    50% {
        box-shadow: 0 20px 80px var(--primary-glow);
    }

    100% {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    }
}

.booking-card h3 {
    font-size: 2.22rem;
    margin-bottom: 20px;
    color: #fff;
}

.booking-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 40px 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.step-num {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.step p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}

.step-line {
    width: 40px;
    height: 1px;
    background: rgba(201, 207, 47, 0.3);
    margin-bottom: 25px;
}

.btn-booking {
    width: 100%;
    max-width: 300px;
    font-size: 1.1rem;
    padding: 20px 0;
    border-radius: 50px;
}

.booking-note {
    margin-top: 25px;
    font-size: 0.8rem;
    color: #555;
    font-style: italic;
}

.section-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
    padding-left: 25px;
}

.form-desc {
    margin-bottom: 30px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Footer --- */
footer {
    background-color: #0f0f0f;
    padding: 80px 0 30px;
    border-top: 3px solid var(--primary-color);
    /* THICK GREEN FOOTER TOP */
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-center {
    display: flex;
    gap: 20px;
}

.social-icon-footer {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-color);
    /* GREEN START */
    font-size: 1.2rem;
    transition: var(--transition-fast);
    border: 1px solid rgba(201, 207, 47, 0.3);
}

.social-icon-footer:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 0 15px var(--primary-glow);
}

.footer-bottom-links {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-bottom-links a {
    color: #888;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

.footer-left p {
    color: #666;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    margin: 0;
    text-align: center;
    font-weight: 200;
    /* Very thin for elegance */
    text-transform: uppercase;
}

.footer-right .designer-credit,
.footer-right .smm-credit {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 5px 0;
    font-weight: 500;
}

.footer-right .designer-credit .rygen,
.footer-right .smm-credit .smm {
    color: #888;
    font-weight: 800;
    transition: var(--transition-fast);
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.footer-right .designer-credit .rygen:hover,
.footer-right .smm-credit .smm:hover {
    color: var(--primary-color);
    text-shadow: 0 0 15px var(--primary-glow);
    transform: scale(1.05);
}

/* --- Responsive --- */
@media (max-width: 900px) {

    .hero h1 {
        font-size: 3.2rem;
    }

    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        order: -1;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        background-color: var(--bg-darker);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
    }

    .nav-links.active {
        transform: translateX(0%);
    }

    .nav-links a {
        font-size: 1.5rem;
    }
}