/* =========================
   ROOT & RESET
========================= */
:root {
    --container: 1100px;
    --max-width: 1200px;
    --primary: #d35400;
    --dark: #222;
    --muted: #6b6b6b;
    --bg: #f7f7f7;
    --radius: 12px;
}

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

html,
body {
    height: 100%;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, Arial;
    background: var(--bg);
    color: var(--dark);
    line-height: 1.5;
    font-size: 16px;
}

/* =========================
   CONTAINER
========================= */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 1rem;
}

.container-xxl {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem 1rem;
}

/* =========================
   HEADER / NAV
========================= */
.site-header {
    background: rgba(255,255,255,0.98);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    padding: 0 30px;
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .8rem 0;
}

.logo {
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    color: var(--dark);
}

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.site-nav a {
    text-decoration: none;
    color: var(--dark);
    padding: .35rem .5rem;
    border-radius: 6px;
}

.site-nav a:hover {
    background: rgba(0,0,0,.05);
}

.nav-toggle {
    display: none;
}

/* =========================
   HERO
========================= */
.hero {
    height: 800px;
    background:
        linear-gradient(rgba(39,51,77,.8), rgba(39,34,65,.8)),
        url("/img/bg-hero.jpg") center / cover no-repeat;
    color: #fff;
    display: flex;
    align-items: center;
}

#hero-inner {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 1.5rem;
}

.hero-copy h1 {
    font-size: 2.6rem;
    line-height: 1.05;
}

.hero-copy p {
    margin: 1rem 0 1.5rem;
    max-width: 54ch;
    color: rgba(255,255,255,.9);
}

.hero-image {
    height: 600px;
    background: url("/img/hero.png") center / contain no-repeat;
    animation: rotate 50s linear infinite;
}

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

/* =========================
   BUTTONS
========================= */
.btn {
    display: inline-block;
    padding: .65rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

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

.btn.ghost {
    background: transparent;
    border: 1px solid rgba(255,255,255,.6);
    color: #fff;
}

/* =========================
   SECTIONS
========================= */
.section-head {
    text-align: center;
    margin-bottom: 1.5rem;
}

/* =========================
   FEATURES
========================= */
.features {
    padding: 3rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1rem;
}

.feature {
    background: #fff;
    padding: 1.1rem;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,.04);
}

/* =========================
   MENU
========================= */
.menu {
    padding: 3rem 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1rem;
}

.menu-item {
    display: flex;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.menu-item img {
    width: 45%;
    object-fit: cover;
}

.menu-item-body {
    padding: 1rem;
}

.menu-item-body h4 {
    font-size: 1.05rem;
    margin-bottom: .4rem;
}

.price {
    float: right;
    color: var(--primary);
    font-weight: 700;
}

/* =========================
   GRID HELPERS
========================= */
.row {
    display: flex;
    flex-wrap: wrap;
}

.col-md-6 {
    width: 50% !important;
}

.col-12 {
    width: 100%;
}

.g-0 { gap: 0; }
.g-3 { gap: 1rem; }

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.px-0 {
    padding-left: 0;
    padding-right: 0;
}

/* =========================
   RESERVATION
========================= */
.video {
    min-height: 420px;
    background:
        url("https://images.unsplash.com/photo-1555396273-367ea4eb4db5?q=80&w=1200")
        center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-play {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    position: relative;
}

.btn-play span {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-left: 18px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.bg-dark {
    background: var(--dark);
    color: #fff;
}

.d-flex {
    display: flex;
}

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

.p-5 {
    padding: 2.5rem;
}

.section-title {
    font-size: .85rem;
    letter-spacing: .08em;
    color: var(--primary);
    text-transform: uppercase;
}

.mb-4 {
    margin-bottom: 1.2rem;
}

/* =========================
   FORM
========================= */
.form-floating {
    position: relative;
}

.form-control,
.form-select,
textarea {
    width: 100%;
    padding: .9rem .75rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,.3);
    background: transparent;
    color: #fff;
    font-family: inherit;
}

textarea {
    resize: none;
}

.form-floating label {
    position: absolute;
    top: 50%;
    left: .75rem;
    transform: translateY(-50%);
    font-size: .75rem;
    color: rgba(255,255,255,.6);
    background: var(--dark);
    padding: 0 .3rem;
    transition: .25s;
}

.form-control:focus + label,
.form-control:not(:placeholder-shown) + label,
textarea:focus + label,
textarea:not(:placeholder-shown) + label {
    top: -.45rem;
    color: var(--primary);
}

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

.w-100 {
    width: 100%;
}

.py-3 {
    padding: .9rem 0;
}

/* =========================
   MODAL (DISABLED)
========================= */
.modal {
    display: none;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    #hero-inner {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .col-md-6 {
        width: 100%;
    }
}
.team-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
}

.team-header {
    text-align: center;
    margin-bottom: 40px;
}

.team-header .subtitle {
    color: #d35400;
    font-size: 18px;
    font-weight: 500;
}

.team-header .title {
    font-size: 36px;
    margin-top: 10px;
}

.team-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.team-card {
    background: #fff;
    border-radius: 12px;
    text-align: center;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.team-img {
    width: 160px;
    height: 160px;
    margin: 0 auto 15px;
    overflow: hidden;
    border-radius: 50%;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.name {
    font-size: 20px;
    margin-bottom: 5px;
}

.role {
    color: #777;
    font-size: 14px;
}

.team-socials {
    margin-top: 15px;
}

.team-socials a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 5px;
    background: #d35400;
    color: #fff;
    margin: 0 5px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.team-socials a:hover {
    background: #a84300;
}
.testimonial-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 20px;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonial-header .subtitle {
    color: #d35400;
    font-size: 18px;
    font-weight: 500;
}

.testimonial-header .title {
    font-size: 36px;
    margin-top: 10px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.testimonial-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 25px;
    background: transparent;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.testimonial-card .quote {
    font-size: 40px;
    color: #d35400;
    display: block;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

.client {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.client h5 {
    margin: 0;
    font-size: 16px;
}

.client small {
    color: #777;
    font-size: 13px;
}
.footer {
    background: #111;
    color: #eee;
    margin-top: 60px;
    font-size: 15px;
}

.footer-main {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.footer-col h4 {
    color: #d35400;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-col a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-col p {
    margin-bottom: 10px;
    color: #ccc;
}

.footer-col i {
    margin-right: 8px;
    color: #d35400;
}

.footer-socials {
    margin-top: 15px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #ccc;
    color: #ccc;
    border-radius: 50%;
    margin-right: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-socials a:hover {
    background: #d35400;
    border-color: #d35400;
    color: #fff;
}

/* Newsletter */
.newsletter {
    display: flex;
    margin-top: 15px;
}

.newsletter input {
    flex: 1;
    padding: 12px;
    border: none;
    outline: none;
}

.newsletter button {
    background: #d35400;
    color: #fff;
    border: none;
    padding: 12px 18px;
    cursor: pointer;
}

.newsletter button:hover {
    background: #a84300;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px;
}

.footer-bottom-grid {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.footer-bottom a {
    color: #d35400;
    text-decoration: none;
}

.footer-menu a {
    color: #ccc;
    margin-left: 15px;
    text-decoration: none;
}

.footer-menu a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 600px) {
    .footer-bottom-grid {
        flex-direction: column;
        text-align: center;
    }

    .footer-menu a {
        margin: 0 8px;
    }
}

