/* ============================================
   Sri Akshaya Mahal - Main Stylesheet
   Luxury green & White Wedding Theme
   ============================================ */

:root {
    --green: #006400;
    --green-light: #90EE90;
    --green-dark: #006400;
    --cream: #fff8ee;
    --white: #ffffff;
    --dark: #2b2118;
    --gray-text: #6b6258;
    --shadow: 0 10px 30px rgba(201, 162, 39, 0.15);
    --radius: 14px;
    --transition: all 0.35s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    font-weight: 700;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section { padding: 80px 0; }
.section-alt { background: linear-gradient(180deg, #fffefb 0%, #fdf6e3 100%); }

.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title .tag {
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}
.section-title h2 {
    font-size: 42px;
    margin-bottom: 12px;
}
.section-title p {
    color: var(--gray-text);
    max-width: 650px;
    margin: 0 auto;
}
.green-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--green-light));
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}
.btn-primary {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    box-shadow: 0 8px 20px rgba(201,162,39,0.35);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(201,162,39,0.45);
}
.btn-outline {
    background: transparent;
    border-color: var(--green);
    color: var(--green);
}
.btn-outline:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== Header / Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-light), var(--green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
}
.logo-text h1 {
    font-size: 20px;
    margin: 0;
    color: var(--green-dark);
}
.logo-text span {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gray-text);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}
.nav-links a {
    font-weight: 500;
    font-size: 15px;
    color: var(--dark);
    position: relative;
    padding: 6px 0;
    transition: var(--transition);
}
.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    height: 2px; width: 0;
    background: var(--green);
    transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--green-dark);
}
.nav-links a.btn:hover {
    color: var(--white);
}
.nav-links a:hover:not(.btn)::after,
.nav-links a.active:not(.btn)::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
}
.nav-toggle span {
    width: 26px;
    height: 3px;
    background: var(--green-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== Hero Banner ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}
.hero img.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(43,33,24,0.55), rgba(43,33,24,0.75));
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1.2s ease;
}
.hero-content .tag {
    color: var(--green-light);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
    display: inline-block;
}
.hero-content h1 {
    color: var(--white);
    font-size: 64px;
    line-height: 1.2;
    margin-bottom: 18px;
}
.hero-content h1 span { color: var(--green-light); }
.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #f5ecd8;
}
.hero-btns { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

.hero-small {
    height: 50vh;
    min-height: 320px;
}
.hero-small .hero-content h1 { font-size: 46px; }

/* Hero variant with no dark overlay - clear, brightened image, buttons + title */
.hero-clear::before {
    content: none;
}
.hero-clear img.hero-bg {
    filter: brightness(1.45) saturate(1.15) contrast(1.05);
}
.hero-clear .hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    padding: 130px 20px 40px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.75) 100%);
}
.hero-clear .hero-title {
    margin-top: 26px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 6vw, 40px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
    text-shadow: 0 2px 18px rgba(0,0,0,0.55), 0 0 40px rgba(0,0,0,0.35);
    white-space: nowrap;
}
.hero-clear .hero-title span {
    color: var(--green-light);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Glass Cards ===== */
.glass-card {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px;
    transition: var(--transition);
}
.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(201,162,39,0.25);
}

/* ===== Grid Layouts ===== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }

/* ===== Cards (Icon Feature) ===== */
.feature-card {
    text-align: center;
    padding: 36px 24px;
}
.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-light), var(--green));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 28px;
}
.feature-card h3 { font-size: 20px; margin-bottom: 10px; }
.feature-card p { color: var(--gray-text); font-size: 14px; }

/* ===== Image Box ===== */
.img-box {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.img-box:hover img { transform: scale(1.08); }

.placeholder-img {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #f3e4b8, #fdf6e3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border-radius: var(--radius);
    border: 2px dashed var(--green-light);
    letter-spacing: 1px;
}

/* ===== Testimonials ===== */
.testimonial-card {
    text-align: center;
    padding: 40px 30px;
}
.testimonial-card .stars { color: var(--green); margin-bottom: 14px; font-size: 18px; }
.testimonial-card p.quote {
    font-style: italic;
    color: var(--gray-text);
    margin-bottom: 20px;
}
.testimonial-card .author { font-weight: 700; color: var(--green-dark); }
.testimonial-card .role { font-size: 12px; color: var(--gray-text); text-transform: uppercase; letter-spacing: 1px; }
.avatar-circle {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-light), var(--green-dark));
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-weight: 700; font-size: 20px;
    margin: 0 auto 14px;
}

/* ===== CTA Booking Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: var(--white);
    text-align: center;
    padding: 70px 20px;
    border-radius: var(--radius);
    margin: 0 20px;
    position: relative;
    overflow: hidden;
}
.cta-section h2 { color: var(--white); font-size: 36px; margin-bottom: 14px; }
.cta-section p { color: #fff6e0; margin-bottom: 26px; }
.cta-section .btn-primary {
    background: var(--white);
    color: var(--green-dark);
    box-shadow: none;
}
.cta-section .btn-primary:hover { background: var(--cream); }

/* ===== Contact Preview / Map ===== */
.map-box {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 350px;
    background: #eee5cc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    font-weight: 600;
    border: 2px dashed var(--green-light);
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 22px;
}
.contact-info-item .icon-circle {
    min-width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: #e8dcc8;
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer h3 { color: var(--green-light); font-size: 18px; margin-bottom: 18px; }
.footer p, .footer a { color: #cbbfa9; font-size: 14px; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { transition: var(--transition); }
.footer ul li a:hover { color: var(--green-light); padding-left: 4px; }
.footer-logo {
    display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.footer-logo h2 { color: var(--green-light); font-size: 22px; }
.social-icons { display: flex; gap: 12px; margin-top: 16px; }
.social-icons a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.social-icons a:hover { background: var(--green); color: var(--dark); transform: translateY(-3px); }
.footer-bottom {
    text-align: center;
    padding: 22px 0;
    font-size: 13px;
    color: #998c74;
}
.footer-bottom a { color: var(--green-light); }

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px; height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(201,162,39,0.4);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
}
.back-to-top.show { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-4px); }

/* ===== Page Header (interior pages) ===== */
.page-header {
    background: linear-gradient(135deg, rgba(43,33,24,0.85), rgba(43,33,24,0.7)), url('../images/placeholder-header-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 160px 0 70px;
    text-align: center;
}
.page-header h1 { color: var(--white); font-size: 48px; }
.page-header .breadcrumb { color: var(--green-light); margin-top: 10px; font-size: 14px; letter-spacing: 1px; }
.page-header .breadcrumb a { color: var(--green-light); }
.page-header .breadcrumb span { color: #fff; }

/* ===== Info List (checkmarks) ===== */
.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--gray-text);
}
.info-list li i, .info-list li .check {
    color: var(--green);
    margin-top: 3px;
}

/* ===== Specs Grid (Hall/Lodge facilities) ===== */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 50px 0;
}
.spec-card {
    text-align: center;
    padding: 30px 18px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.spec-card:hover { transform: translateY(-6px); border-color: var(--green); }
.spec-card .feature-icon { width: 56px; height: 56px; font-size: 22px; margin-bottom: 14px; }
.spec-card h4 { font-size: 16px; margin-bottom: 6px; }
.spec-card p { font-size: 13px; color: var(--gray-text); margin: 0; }

/* ===== Pricing Cards ===== */
.pricing-card {
    text-align: center;
    padding: 40px 30px;
    position: relative;
}
.pricing-card.featured {
    border: 2px solid var(--green);
    transform: scale(1.03);
}
.pricing-card .price {
    font-size: 38px;
    font-family: 'Playfair Display', serif;
    color: var(--green-dark);
    margin: 16px 0;
    font-weight: 700;
}
.pricing-card .price span { font-size: 14px; color: var(--gray-text); font-family: 'Poppins', sans-serif; }
.pricing-card ul { margin: 20px 0; text-align: left; }
.pricing-card ul li { padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 14px; color: var(--gray-text); }
.pricing-card .badge {
    position: absolute; top: -14px; right: 20px;
    background: var(--green); color: var(--white);
    padding: 5px 14px; border-radius: 20px; font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
}

/* ===== Gallery ===== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.filter-btn {
    padding: 10px 24px;
    border-radius: 30px;
    border: 2px solid var(--green-light);
    background: transparent;
    color: var(--green-dark);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.filter-btn.active, .filter-btn:hover {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: var(--shadow);
}
.gallery-item .placeholder-img { border-radius: var(--radius); aspect-ratio: 1/1; }
.gallery-item::after {
    content: '\1F50D';
    position: absolute;
    inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(43,33,24,0.4);
    color: var(--white);
    font-size: 24px;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover .placeholder-img { transform: scale(1.05); transition: transform 0.5s; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(20,15,10,0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}
.lightbox.show { display: flex; }
.lightbox-content {
    max-width: 700px;
    width: 100%;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
    position: relative;
}
.lightbox-content .placeholder-img { aspect-ratio: 16/10; border-radius: 0; border: none; }
.lightbox-caption { padding: 16px; font-weight: 600; color: var(--green-dark); }
.lightbox-close {
    position: absolute; top: 14px; right: 18px;
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
    background: rgba(0,0,0,0.4);
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* ===== Forms ===== */
.form-group { margin-bottom: 22px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
}
.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e6d8b8;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    background: var(--white);
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
}
textarea.form-control { resize: vertical; min-height: 130px; }

.alert {
    padding: 14px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}
.alert-success { background: #e6f4ea; color: #1e7e34; border: 1px solid #b6e2c4; }
.alert-error { background: #fbe7e7; color: #b3261e; border: 1px solid #f3c2c2; }

/* ===== Animations - scroll reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* ===== Admin Panel ===== */
.admin-body { background: #f5f1e6; font-family: 'Poppins', sans-serif; }
.admin-login-wrap {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
}
.admin-login-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 50px 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    text-align: center;
}
.admin-login-box .logo-icon { margin: 0 auto 16px; }
.admin-login-box h2 { margin-bottom: 6px; }
.admin-login-box p.sub { color: var(--gray-text); font-size: 13px; margin-bottom: 26px; }

.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 250px;
    background: var(--dark);
    color: #e8dcc8;
    padding: 24px 0;
    flex-shrink: 0;
}
.admin-sidebar .logo-text h1 { color: var(--green-light); }
.admin-sidebar .logo { padding: 0 24px 24px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 20px; }
.admin-sidebar nav a {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
}
.admin-sidebar nav a:hover, .admin-sidebar nav a.active {
    background: rgba(255,255,255,0.06);
    border-left-color: var(--green);
    color: var(--green-light);
}
.admin-main { flex: 1; padding: 30px 40px; }
.admin-topbar {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 30px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e6d8b8;
}
.admin-topbar h2 { font-size: 26px; }

.stat-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 30px; }
.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow);
    display: flex; align-items: center; gap: 18px;
}
.stat-card .feature-icon { margin: 0; }
.stat-card h3 { font-size: 30px; margin: 0; }
.stat-card p { color: var(--gray-text); font-size: 13px; margin: 0; }

.admin-table {
    width: 100%;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border-collapse: collapse;
}
.admin-table th, .admin-table td {
    padding: 14px 18px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid #f0e6cc;
}
.admin-table th {
    background: #fdf6e3;
    color: var(--green-dark);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}
.admin-table tr:hover { background: #fffaf0; }
.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 6px;
}
.btn-danger { background: #d9534f; color: var(--white); border: none; }
.btn-danger:hover { background: #c9302c; }

.upload-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}
.gallery-admin-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.gallery-admin-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
}
.gallery-admin-item .placeholder-img { aspect-ratio: 1/1; border-radius: 0; }
.gallery-admin-item .info { padding: 10px; }
.gallery-admin-item .info p { font-size: 12px; margin-bottom: 8px; }

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .specs-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-content h1 { font-size: 44px; }
    .admin-sidebar { width: 200px; }
    .gallery-admin-grid { grid-template-columns: repeat(3, 1fr); }
    .stat-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 70%; height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    }
    .nav-links.open { right: 0; }
    .nav-toggle { display: flex; }
    .hero-content h1 { font-size: 34px; }
    .hero-content p { font-size: 15px; }
    .hero { min-height: 460px; }
    .hero-clear .hero-content {
        padding: 60px 14px 20px;
        background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.82) 100%);
    }
    .hero-clear .hero-btns { gap: 10px; }
    .hero-clear .hero-btns .btn { padding: 11px 24px; font-size: 11px; }
    .hero-clear .hero-title { margin-top: 12px; font-size: clamp(16px, 5.5vw, 28px); }
    .section { padding: 50px 0; }
    .section-title h2 { font-size: 30px; }
    .footer-grid { grid-template-columns: 1fr; }
    .specs-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .admin-layout { flex-direction: column; }
    .admin-sidebar { width: 100%; }
    .admin-main { padding: 20px; }
    .gallery-admin-grid { grid-template-columns: repeat(2, 1fr); }
    .page-header { padding: 130px 0 50px; }
    .page-header h1 { font-size: 32px; }
}

@media (max-width: 600px) {
    .specs-grid, .gallery-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; align-items: center; width: 100%; }
    .hero-clear .hero-btns .btn { width: 100%; max-width: 280px; text-align: center; }
}
