:root {
    --primary: #ff6b2c;
    --primary-dark: #e2551a;
    --accent: #008fd1;
    --bg: #f5fbff;
    --text: #222222;
    --muted: #6b6b6b;
    --radius-lg: 1.5rem;
    --shadow-soft: 0 18px 35px rgba(15, 35, 52, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background-color: white;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.section {
    padding: 4rem 0;
}

.section h2 {
    font-size: clamp(2rem, 2.4vw, 2.4rem);
    margin-bottom: 0.75rem;
}

.section-intro {
    color: var(--muted);
    max-width: 40rem;
    margin-bottom: 2rem;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(15, 35, 52, 0.06);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.25rem;
}

.logo img {
    height: 56px;
    width: auto;
}

.main-nav {
    display: flex;
    gap: 1.2rem;
    font-size: 0.95rem;
}

.main-nav a {
    padding: 0.3rem 0.4rem;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 500;
}

.main-nav a:hover {
    color: var(--primary);
    background-color: rgba(255, 107, 44, 0.08);
}

/* Hero */

.hero {
    position: relative;
    min-height: 70vh;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: stretch;
    background: radial-gradient(circle at top left, #fff9f4 0, #f5fbff 55%, #e4f4ff 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(circle at 10% 20%, rgba(255, 107, 44, 0.15) 0, transparent 55%),
        radial-gradient(circle at 80% 10%, rgba(0, 143, 209, 0.18) 0, transparent 55%);
}

.hero-content {
    position: relative;
    padding: 4.5rem 1.25rem 3.5rem;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.2rem, 3.4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

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

.hero p {
    color: var(--muted);
    max-width: 26rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.hero-image {
    position: relative;
    background-image: url("../img/1.jpg");
    background-size: cover;
    background-position: center;
    min-height: 18rem;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.3rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease,
        border-color 0.15s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(255, 107, 44, 0.32);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(255, 107, 44, 0.38);
}

.btn-outline {
    border-color: rgba(0, 143, 209, 0.4);
    color: var(--accent);
    background: #ffffff;
}

.btn-outline:hover {
    background-color: rgba(0, 143, 209, 0.05);
}

.social-btn {
    background-color: #ffffff;
    border-color: rgba(0, 143, 209, 0.25);
}

.social-btn:hover {
    background-color: rgba(0, 143, 209, 0.06);
}

/* About */

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2.5rem;
    align-items: center;
}

.about-text p + p {
    margin-top: 0.75rem;
}

.about-highlight {
    margin-top: 1.2rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: rgba(0, 143, 209, 0.05);
    border: 1px dashed rgba(0, 143, 209, 0.4);
    font-size: 0.9rem;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

/* Specials */

.specials {
    background-color: var(--bg);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.7rem;
    margin-top: 1.8rem;
}

.card {
    background-color: #ffffff;
    border-radius: 1.3rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}

.card img {
    height: 210px;
    object-fit: cover;
}

.card-body {
    padding: 1.1rem 1.2rem 1.2rem;
}

.card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.card-body p {
    color: var(--muted);
    font-size: 0.94rem;
}

/* Gallery */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.7rem;
}

.gallery-item {
    border-radius: 1.1rem;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 8px 18px rgba(15, 35, 52, 0.12);
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(15, 35, 52, 0.2);
}

.lightbox {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 1.5rem;
}

.lightbox.is-visible {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 900px;
    width: 100%;
}

.lightbox-content img {
    width: 100%;
    border-radius: 1.2rem;
}

.lightbox-close {
    position: absolute;
    top: -2.2rem;
    right: 0;
    background: #ffffff;
    border: none;
    border-radius: 999px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
}

/* Video */

.video-section {
    background: radial-gradient(circle at top, #e4f4ff 0, #ffffff 55%);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 1.3rem;
    box-shadow: var(--shadow-soft);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Social */

.social-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2.2rem;
    align-items: center;
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.1rem;
}

.social-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

/* Location */

.location {
    background-color: #f8fafc;
}

.location-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem;
    margin-top: 1.8rem;
}

.contact-list {
    list-style: none;
    margin-top: 1rem;
}

.contact-list li + li {
    margin-top: 0.4rem;
}

.contact-list a {
    color: var(--accent);
}

.map-frame {
    width: 100%;
    min-height: 260px;
    border: 0;
    border-radius: 1.2rem;
    box-shadow: var(--shadow-soft);
}

/* Contact */

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2.4rem;
    align-items: center;
}

.contact-form {
    margin-top: 1.3rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.9rem;
}

.form-row label {
    font-size: 0.9rem;
    font-weight: 500;
}

.form-row input,
.form-row textarea {
    padding: 0.6rem 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid #d1d5db;
    font: inherit;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(0, 143, 209, 0.4);
}

.contact-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

/* WhatsApp floating button */

.whatsapp-float {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 60;
    background: #25d366;
    color: #ffffff;
    border-radius: 999px;
    padding: 0.8rem 1.1rem;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float:hover {
    transform: translateY(-1px);
}

/* Footer */

.site-footer {
    border-top: 1px solid rgba(148, 163, 184, 0.35);
    background-color: #0f172a;
    color: #e5e7eb;
    padding: 1.5rem 0;
    font-size: 0.88rem;
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-footer a {
    color: #38bdf8;
}

/* Responsive */

@media (max-width: 900px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-image {
        min-height: 220px;
    }

    .about-grid,
    .cards-grid,
    .gallery-grid,
    .social-grid,
    .location-grid,
    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }

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

    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 3rem 0;
    }

    .cards-grid,
    .gallery-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-content {
        padding-top: 3.2rem;
    }

    .footer-grid {
        flex-direction: column;
        align-items: flex-start;
    }
}
