/* Modern Tamyka Events Garden design system */
:root {
    --forest: #183a2b;
    --forest-2: #26533f;
    --leaf: #7aa95c;
    --sage: #dfe9d8;
    --gold: #d9a441;
    --coral: #c96d4f;
    --ink: #17221b;
    --muted: #66736b;
    --paper: #fbfaf6;
    --white: #ffffff;
    --line: rgba(24, 58, 43, 0.12);
    --shadow: 0 22px 60px rgba(24, 58, 43, 0.16);
    --soft-shadow: 0 14px 34px rgba(24, 58, 43, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--ink);
    background: var(--paper);
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.loading-spinner {
    position: fixed;
    inset: 0;
    background: rgba(251, 250, 246, 0.96);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 46px;
    height: 46px;
    border: 4px solid var(--sage);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.12;
    color: var(--forest);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.1rem);
    text-align: center;
    margin-bottom: 0.75rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 72px;
    height: 3px;
    background: linear-gradient(90deg, var(--leaf), var(--gold));
    margin: 18px auto 0;
    border-radius: 999px;
}

.section-subtitle {
    max-width: 620px;
    text-align: center;
    font-size: 1.05rem;
    color: var(--muted);
    margin: 0 auto 3rem;
}

.section-eyebrow,
.hero-eyebrow {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--gold);
    color: #211609;
    box-shadow: 0 16px 30px rgba(217, 164, 65, 0.28);
}

.btn-primary:hover {
    background: #e5b65b;
    box-shadow: 0 18px 36px rgba(217, 164, 65, 0.36);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.13);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(12px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--forest);
}

.header {
    position: fixed;
    top: 14px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: top 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.header.scrolled {
    top: 0;
    background: rgba(251, 250, 246, 0.92);
    box-shadow: 0 12px 38px rgba(24, 58, 43, 0.12);
    backdrop-filter: blur(18px);
}

.navbar {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 34px rgba(24, 58, 43, 0.11);
    backdrop-filter: blur(18px);
}

.logo {
    display: flex;
    align-items: center;
    min-width: 0;
    text-decoration: none;
}

.logo-container {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--white);
    box-shadow: inset 0 0 0 1px var(--line);
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.logo h2 {
    font-size: 1.3rem;
    color: var(--forest);
    margin-left: 10px;
    white-space: nowrap;
}

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

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 13px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--forest);
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.25s ease, color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--sage);
    color: var(--forest);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 18px;
    border-radius: 999px;
    background: var(--forest);
    color: var(--white);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    white-space: nowrap;
    transition: background 0.25s ease, transform 0.25s ease;
}

.nav-cta:hover {
    background: var(--forest-2);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-radius: 50%;
    background: var(--sage);
    cursor: pointer;
}

.hamburger span {
    width: 21px;
    height: 2px;
    background: var(--forest);
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.toggle span:nth-child(2) {
    opacity: 0;
}

.hamburger.toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 126px 20px 56px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(18, 39, 30, 0.92), rgba(18, 39, 30, 0.48), rgba(18, 39, 30, 0.82)),
        url('images/garden-wedding.jpg') center / cover no-repeat;
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 130px;
    background: linear-gradient(180deg, rgba(251, 250, 246, 0), var(--paper));
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(900px, 100%);
}

.hero-title {
    color: var(--white);
    font-size: clamp(3rem, 8vw, 6.6rem);
    margin-bottom: 20px;
    text-wrap: balance;
}

.hero-subtitle {
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1rem, 2vw, 1.35rem);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-highlights {
    width: min(850px, 100%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin: 54px auto 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.hero-highlights div {
    min-height: 104px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-highlights strong {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    line-height: 1.1;
}

.hero-highlights span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.86rem;
    margin-top: 6px;
}

.about,
.key-features,
.services,
.equipment,
.gallery,
.contact {
    padding: clamp(78px, 9vw, 118px) 0;
}

.about {
    background: var(--paper);
}

.about-content {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
    align-items: center;
    gap: clamp(34px, 6vw, 72px);
}

.about-text .section-title,
.contact-info .section-title {
    text-align: left;
}

.about-text .section-title::after,
.contact-info .section-title::after {
    margin-left: 0;
}

.about-text p {
    margin-bottom: 18px;
    font-size: 1.05rem;
    color: var(--muted);
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: -20px 28px 28px -20px;
    border: 1px solid rgba(217, 164, 65, 0.5);
    border-radius: 8px;
}

.image-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 3;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.image-placeholder:hover img {
    transform: scale(1.04);
}

.key-features {
    background: var(--white);
}

.features,
.key-features .features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
}

.feature {
    min-height: 285px;
    padding: 32px 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff, #f7f8f1);
    box-shadow: var(--soft-shadow);
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 164, 65, 0.42);
    box-shadow: var(--shadow);
}

.feature i {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--forest);
    color: var(--gold);
    font-size: 1.35rem;
    margin-bottom: 22px;
}

.feature h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.feature p {
    color: var(--muted);
}

.services {
    background: linear-gradient(180deg, var(--sage), #f7f4ec);
}

.equipment {
    background: var(--paper);
}

.services-grid,
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.service-card,
.equipment-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(24, 58, 43, 0.1);
    box-shadow: var(--soft-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.equipment-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.service-image,
.equipment-image {
    width: 100%;
    aspect-ratio: 1.22 / 1;
    overflow: hidden;
}

.service-image img,
.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.service-card:hover img,
.equipment-card:hover img {
    transform: scale(1.07);
}

.service-card h3,
.equipment-card h3 {
    font-size: 1.45rem;
    padding: 24px 22px 10px;
}

.service-card p,
.equipment-card p {
    color: var(--muted);
    padding: 0 22px 26px;
}

.gallery {
    background: var(--forest);
}

.gallery .section-title,
.gallery .section-subtitle {
    color: var(--white);
}

.gallery .section-subtitle {
    color: rgba(255, 255, 255, 0.72);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 168px;
    gap: 14px;
}

.gallery-item {
    position: relative;
    min-height: 220px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    cursor: zoom-in;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
    grid-column: span 5;
    grid-row: span 2;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3),
.gallery-item:nth-child(4),
.gallery-item:nth-child(5) {
    grid-column: span 3;
}

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

.gallery-item:hover img {
    transform: scale(1.06);
    filter: saturate(1.08);
}

.contact {
    background:
        linear-gradient(135deg, rgba(223, 233, 216, 0.85), rgba(251, 250, 246, 0.96)),
        url('images/about-garden.jpg') center / cover fixed;
}

.contact-content {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: clamp(32px, 6vw, 70px);
    align-items: start;
}

.contact-details {
    margin: 36px 0;
}

.contact-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: start;
    gap: 16px;
    margin-bottom: 18px;
}

.contact-item i,
.contact-item a {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--forest);
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(24, 58, 43, 0.1);
}

.contact-item a i {
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
}

.contact-item h3 {
    font-size: 1.15rem;
    margin-bottom: 3px;
}

.contact-item p {
    color: var(--muted);
    overflow-wrap: anywhere;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 26px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--white);
    font-size: 1.15rem;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease;
}

.social-links a:hover {
    transform: translateY(-4px);
    background: var(--coral);
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.contact-form h3 {
    font-size: 1.85rem;
    margin-bottom: 26px;
    text-align: left;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-height: 50px;
    padding: 13px 14px;
    border: 1px solid rgba(24, 58, 43, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--ink);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--leaf);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(122, 169, 92, 0.16);
}

.contact-form .btn {
    width: 100%;
}

.footer {
    background: #101912;
    color: var(--white);
    padding: 68px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.2fr;
    gap: 38px;
    margin-bottom: 46px;
}

.footer-logo h2,
.footer-links h3,
.footer-contact h3 {
    color: var(--white);
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 14px;
}

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

.footer-logo p,
.footer-links a,
.footer-contact p {
    color: rgba(255, 255, 255, 0.68);
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.25rem;
    margin-bottom: 18px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a,
.plus-code-link {
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-links a:hover,
.plus-code-link:hover {
    color: var(--gold);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 11px;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 5px;
}

.plus-code-link {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.58);
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(12, 19, 14, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 24px;
}

.lightbox-content {
    position: relative;
    max-width: 92vw;
    max-height: 88vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 78vh;
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

.close {
    position: absolute;
    top: -44px;
    right: 0;
    color: var(--white);
    font-size: 2.6rem;
    cursor: pointer;
    line-height: 1;
}

.caption {
    color: rgba(255, 255, 255, 0.78);
    text-align: center;
    margin-top: 14px;
    font-size: 1rem;
}

@media (max-width: 1080px) {
    .nav-links {
        gap: 0;
    }

    .nav-links a {
        padding-inline: 9px;
    }

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

@media (max-width: 900px) {
    .header {
        top: 10px;
    }

    .navbar {
        border-radius: 28px;
    }

    .nav-cta {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 92px;
        left: 20px;
        right: 20px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(251, 250, 246, 0.98);
        box-shadow: var(--shadow);
        transform: translateY(-18px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .nav-links.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links a {
        justify-content: center;
        min-height: 46px;
    }

    .hamburger {
        display: flex;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .features,
    .key-features .features {
        grid-template-columns: 1fr;
    }

    .feature {
        min-height: auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 230px;
    }

    .gallery-item,
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(6) {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 230px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1120px);
    }

    .logo h2 {
        font-size: 1.08rem;
    }

    .logo-container {
        width: 42px;
        height: 42px;
    }

    .hero {
        align-items: flex-end;
        text-align: left;
        padding-inline: 14px;
        padding-bottom: 30px;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
        margin-top: 34px;
    }

    .hero-highlights div {
        min-height: 86px;
        align-items: flex-start;
    }

    .services-grid,
    .equipment-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-auto-rows: 250px;
    }

    .contact-item {
        grid-template-columns: 42px 1fr;
        gap: 12px;
    }

    .contact-item i,
    .contact-item a,
    .social-links a {
        width: 42px;
        height: 42px;
    }
}
