/* Basic reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #05030a;
    color: #f5f5f5;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 3, 10, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
}

.logo img {
    height: 50px;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 0.2rem;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.25rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.main-nav a {
    padding-bottom: 0.2rem;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s, color 0.2s;
}

.main-nav a:hover {
    color: #ffb347;
    border-color: #ffb347;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: #05030a;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0.75rem 1rem 1rem;
    }

    .main-nav li + li {
        margin-top: 0.4rem;
    }

    .main-nav a {
        display: block;
        padding: 0.35rem 0;
    }

    .site-header.nav-open .main-nav {
        max-height: 300px;
    }

    .site-header.nav-open .nav-toggle span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .site-header.nav-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    .site-header.nav-open .nav-toggle span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

/* Sections & layout */
main {
    padding-bottom: 3rem;
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr;
    }
}

.center {
    text-align: center;
}

/* Hero & page hero */
.hero-section {
    position: relative;
}

.page-hero {
    background: radial-gradient(circle at top, #351c6a, #05030a);
}

.page-hero h1 {
    font-size: 2.3rem;
    margin-bottom: 0.6rem;
}

.page-hero p {
    color: #d7d7e4;
}

/* Global section spacing (50px top & bottom) */
.hero-section,
.page-hero,
.section {
    padding: 50px 0;
}

.section.alt {
    background: #0b0714;
}

/* Carousel */
.carousel {
    position: relative;
    overflow: hidden;
    max-height: 580px;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.carousel-slide.active {
    opacity: 1;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    filter: brightness(0.6);
}

.carousel-caption {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 8%;
    color: #fffaf5;
}

.carousel-caption h1 {
    font-size: 2.6rem;
    margin-bottom: 0.6rem;
}

.carousel-caption p {
    font-size: 1.05rem;
    color: #f3e1cf;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    padding: 0.6rem 0.9rem;
    cursor: pointer;
    font-size: 1.4rem;
    border-radius: 999px;
}

.carousel-control.prev {
    left: 1rem;
}

.carousel-control.next {
    right: 1rem;
}

.carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.4rem;
}

.carousel-dots button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

.carousel-dots button.active {
    background: #ffb347;
}

/* Buttons */
.btn,
.btn-outline {
    display: inline-block;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn {
    background: linear-gradient(135deg, #ffb347, #ff5c5c);
    color: #1a0f2b;
    font-weight: 600;
}

.btn:hover {
    filter: brightness(1.05);
}

.btn-outline {
    border-color: #ffb347;
    color: #ffb347;
}

.btn-outline:hover {
    background: #ffb347;
    color: #1a0f2b;
}

/* Home page sections */
.about-home p {
    margin-bottom: 1.3rem;
    color: #dfdfeb;
}

.highlight-box {
    background: linear-gradient(145deg, rgba(255, 179, 71, 0.14), rgba(255, 92, 92, 0.18));
    border-radius: 1rem;
    padding: 1.5rem 1.7rem;
}

.highlight-box h3 {
    margin-bottom: 0.7rem;
}

.highlight-box ul {
    list-style: disc;
    padding-left: 1.2rem;
    color: #f7ece0;
}

.events-home h2,
.menu-home h2,
.gallery-home h2,
.cta-home h2,
.why-phoenix h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.3rem;
    margin-top: 1.5rem;
}

.events-grid article {
    background: #0b0714;
    padding: 1.2rem 1rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.93rem;
}

.why-phoenix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.why-phoenix-box {
    background: #0b0714;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.why-phoenix-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 179, 71, 0.3);
}

.why-phoenix-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    line-height: 1;
}

.why-phoenix-box h3 {
    margin-bottom: 0.7rem;
    color: #ffb347;
    font-size: 1.1rem;
}

.why-phoenix-box p {
    color: #dfdfeb;
    font-size: 0.93rem;
    line-height: 1.5;
}

.menu-home .menu-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.3rem 0;
}

.menu-home .menu-tags li {
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.8rem;
}

.card-list {
    display: grid;
    gap: 1rem;
}

.card {
    background: #0b0714;
    padding: 1.2rem 1.1rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.93rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.8rem;
}

.gallery-grid img {
    border-radius: 0.7rem;
    object-fit: cover;
    height: 180px;
}

.cta-home {
    background: radial-gradient(circle at top left, #351c6a, #05030a);
}

.cta-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cta-actions {
    display: flex;
    gap: 0.7rem;
}

@media (max-width: 600px) {
    .carousel-caption {
        padding: 0 1.5rem;
        align-items: center;
        text-align: center;
    }
    .carousel-caption h1 {
        font-size: 1.9rem;
    }
    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
    .cta-actions {
        width: 100%;
        flex-direction: column;
    }
}

/* About page */
.check-list {
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.6rem;
}

.check-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffb347;
    font-size: 0.9rem;
}

/* Events page */
.events-list {
    display: grid;
    gap: 1.3rem;
}

.event-card {
    background: #0b0714;
    border-radius: 1rem;
    padding: 1.4rem 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.event-card h2 {
    margin-bottom: 0.5rem;
}

.event-time {
    font-size: 0.85rem;
    color: #ffb347;
    margin-bottom: 0.6rem;
}

/* Menu page */
.menu-page {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.8rem;
}

.menu-section h2 {
    margin-bottom: 0.8rem;
}

.menu-section ul {
    list-style: none;
}

.menu-section li {
    border-radius:5rem 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.95rem;
    padding: 1.5rem 2rem;
    background:  radial-gradient(circle at top left,rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
    margin-bottom:1rem;
}

.menu-section .price {
    white-space: nowrap;
    color: #ffb347;
    font-size: 0.9rem;
}

/* Contact page */
.contact-page {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
    gap: 2.5rem;
}

@media (max-width: 900px) {
    .contact-page {
        grid-template-columns: 1fr;
    }
}

.contact-info p {
    margin-bottom: 0.9rem;
}

.contact-form form {
    display: grid;
    gap: 0.9rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.form-row label {
    font-size: 0.9rem;
}

input,
textarea {
    background: #05030a;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.6rem 0.7rem;
    color: #f5f5f5;
    font-family: inherit;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #ffb347;
}

.map-wrapper {
    margin-top: 1.2rem;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Gallery page */
.gallery-page .gallery-grid img {
    height: 200px;
}

/* Footer */
.site-footer {
    background: #04010a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 2rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.8rem;
    padding: 2.3rem 0 1.3rem;
    font-size: 0.9rem;
}

.footer-col h4 {
    margin-bottom: 0.6rem;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.7rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: #ffb347;
    font-size: 0.85rem;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-icon.instagram {
    border-color: #e1306c;
}

.social-icon.twitter {
    border-color: #1da1f2;
}

.social-icon.facebook {
    border-color: #1877f2;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.7rem 0;
    font-size: 0.8rem;
    text-align: center;
    color: #bfbfd3;
}


