/*
Theme Name: Orange Lounge & Pub
Theme URI: https://orangeloungeandpub.com
Author: Orange Lounge Dev
Author URI: https://orangeloungeandpub.com
Description: A modern, single-page WordPress theme for Orange Lounge & Pub nightclub. Features a dark premium aesthetic with orange accents, Instagram feed, Facebook page embed, WhatsApp integration, and robust security hardening.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: orange-lounge
Tags: one-page, custom-logo, featured-images, threaded-comments, translation-ready
Requires at least: 6.0
Requires PHP: 8.0
*/

/* =============================================
   DESIGN SYSTEM — CSS Custom Properties
   ============================================= */
:root {
    /* Colors */
    --color-primary: #f2930d;
    --color-primary-rgb: 242, 147, 13;
    --color-accent-green: #39ff14;
    --color-accent-green-rgb: 57, 255, 20;
    --color-bg-dark: #221b10;
    --color-bg-dark-rgb: 34, 27, 16;
    --color-bg-light: #f8f7f5;
    --color-text-light: #f1f5f9;
    --color-text-muted: #94a3b8;
    --color-text-dark: #0f172a;
    --color-surface: rgba(242, 147, 13, 0.05);
    --color-border: rgba(242, 147, 13, 0.2);

    /* Typography */
    --font-display: 'Space Grotesk', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --section-padding-y: 6rem;
    --section-padding-x: 1.5rem;
    --container-max: 80rem;

    /* Radii */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.25rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-glow-orange: 0 0 15px rgba(var(--color-primary-rgb), 0.4);
    --shadow-glow-green: 0 0 10px rgba(var(--color-accent-green-rgb), 0.6);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-slower: 700ms ease;
}

/* =============================================
   RESET & BASE
   ============================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-display);
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary);
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--section-padding-x);
    padding-right: var(--section-padding-x);
}

.section {
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.section-header .accent-bar {
    width: 6rem;
    height: 0.25rem;
    background: var(--color-primary);
    margin: 0 auto;
    border-radius: var(--radius-full);
}

/* =============================================
   STICKY NAVIGATION
   ============================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(var(--color-bg-dark-rgb), 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: background var(--transition-base);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-brand .brand-logo {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-lg);
    object-fit: contain;
}

.site-brand .brand-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--color-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-bg-dark);
    font-weight: 700;
}

.site-brand h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-text-light);
}

.site-brand h1 span {
    color: var(--color-primary);
}

/* Desktop Nav */
.nav-desktop {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

.nav-desktop a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-light);
    position: relative;
    padding-bottom: 0.25rem;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-base);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

/* WhatsApp CTA in header */
.btn-whatsapp-header {
    display: none;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-primary);
    color: var(--color-bg-dark);
    font-weight: 700;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-glow-orange);
    transition: all var(--transition-base);
    font-size: 0.875rem;
}

.btn-whatsapp-header:hover {
    background: #e0870c;
    color: var(--color-bg-dark);
    transform: scale(1.03);
}

/* Mobile hamburger */
.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border-radius: var(--radius-full);
    transition: background var(--transition-fast);
    color: var(--color-primary);
}

.nav-toggle:hover {
    background: rgba(var(--color-primary-rgb), 0.1);
}

/* Mobile slide-out nav */
.nav-mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.nav-mobile-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

.nav-mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 210;
    width: 280px;
    height: 100%;
    background: var(--color-bg-dark);
    border-left: 1px solid var(--color-border);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.nav-mobile-drawer.is-open {
    transform: translateX(0);
}

.nav-mobile-drawer .nav-close {
    align-self: flex-end;
    background: none;
    color: var(--color-text-muted);
    font-size: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    transition: background var(--transition-fast);
}

.nav-mobile-drawer .nav-close:hover {
    background: rgba(var(--color-primary-rgb), 0.1);
    color: var(--color-primary);
}

.nav-mobile-drawer a {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-light);
}

.nav-mobile-drawer a:hover {
    color: var(--color-primary);
}

.nav-mobile-drawer .btn-whatsapp-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--color-primary);
    color: var(--color-bg-dark);
    font-weight: 700;
    padding: 1rem;
    border-radius: var(--radius-lg);
    margin-top: auto;
    font-size: 0.95rem;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(var(--color-bg-dark-rgb), 0.55),
        rgba(var(--color-bg-dark-rgb), 0.9)
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 48rem;
    padding: 2rem var(--section-padding-x);
}

.hero-tagline {
    color: var(--color-accent-green);
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    text-shadow: var(--shadow-glow-green);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 .highlight {
    color: var(--color-primary);
    font-style: italic;
}

.hero-description {
    color: var(--color-text-muted);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-bg-dark);
    font-weight: 800;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-xl);
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: transform var(--transition-fast);
    min-width: 220px;
}

.btn-primary:hover {
    transform: scale(1.05);
    color: var(--color-bg-dark);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-xl);
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    transition: all var(--transition-fast);
    background: transparent;
    min-width: 220px;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(255, 255, 255, 0.4);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-12px); }
    60% { transform: translateX(-50%) translateY(-6px); }
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
    background: var(--color-bg-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.about-text p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
}

.badge .material-symbols-outlined {
    font-size: 1.1rem;
}

/* =============================================
   DESIGNS / GALLERY SECTION
   ============================================= */
.designs-section {
    background: rgba(var(--color-bg-dark-rgb), 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.design-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 1;
    background: #1a140c;
}

.design-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.design-card:hover img {
    transform: scale(1.1);
}

.design-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(var(--color-primary-rgb), 0.15);
    opacity: 0;
    transition: opacity var(--transition-base);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
}

.design-card:hover .design-card-overlay {
    opacity: 1;
}

.design-card-overlay h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* =============================================
   INSTAGRAM SECTION
   ============================================= */
.instagram-section {
    background: var(--color-bg-dark);
}

.instagram-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.instagram-header .label {
    color: var(--color-accent-green);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.instagram-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-text-light);
}

.instagram-header .follow-link {
    color: var(--color-primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.instagram-header .follow-link:hover {
    text-decoration: underline;
    color: var(--color-primary);
}

/* Feed container — the Smash Balloon plugin will populate this */
.instagram-feed-container {
    min-height: 200px;
}

/* =============================================
   FACEBOOK SECTION
   ============================================= */
.facebook-section {
    background: rgba(var(--color-bg-dark-rgb), 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.facebook-embed-wrapper {
    display: flex;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
}

.facebook-embed-wrapper iframe {
    border: none;
    width: 100%;
    max-width: 500px;
    min-height: 600px;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
    background: var(--color-bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-xl);
    background: rgba(var(--color-primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-primary);
}

.contact-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--color-text-light);
}

.contact-item p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    color: var(--color-text-light);
}

.social-icon:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-bg-dark);
}

/* Map */
.contact-map {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    height: 350px;
    filter: grayscale(1) contrast(1.25);
    transition: filter var(--transition-slower);
    border: 1px solid var(--color-border);
}

.contact-map:hover {
    filter: grayscale(0);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Enquiry Form */
.enquiry-form {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2xl);
    padding: 2rem;
}

.enquiry-form h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.enquiry-form .form-field {
    margin-bottom: 1rem;
}

.enquiry-form input,
.enquiry-form textarea,
.enquiry-form select {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--color-text-light);
    font-family: var(--font-display);
    font-size: 0.95rem;
    transition: border-color var(--transition-fast);
}

.enquiry-form input:focus,
.enquiry-form textarea:focus,
.enquiry-form select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.15);
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
    color: var(--color-text-muted);
}

.enquiry-form textarea {
    resize: vertical;
    min-height: 120px;
}

.enquiry-form .btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--color-primary);
    color: var(--color-bg-dark);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-lg);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all var(--transition-fast);
}

.enquiry-form .btn-submit:hover {
    background: #e0870c;
    transform: translateY(-1px);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--color-bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 5rem;
    padding-bottom: 2.5rem;
}

.footer-inner {
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.footer-brand .brand-icon-sm {
    width: 2rem;
    height: 2rem;
    background: var(--color-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-bg-dark);
}

.footer-brand h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-light);
}

.footer-brand h2 span {
    color: var(--color-primary);
}

.footer-tagline {
    color: var(--color-text-muted);
    max-width: 32rem;
    margin: 0 auto 2.5rem;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.footer-links a {
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(var(--color-primary-rgb), 0.15);
    border: 1px solid rgba(var(--color-primary-rgb), 0.4);
    color: var(--color-primary);
    font-weight: 700;
    padding: 1rem 3rem;
    border-radius: var(--radius-full);
    margin-bottom: 4rem;
    transition: all var(--transition-fast);
    font-size: 0.95rem;
}

.footer-whatsapp-cta:hover {
    background: rgba(var(--color-primary-rgb), 0.25);
    color: var(--color-primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

/* =============================================
   MOBILE BOTTOM NAV (visible < 768px)
   ============================================= */
.mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(var(--color-bg-dark-rgb), 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--color-border);
    padding: 0.5rem 1rem 1.5rem;
}

.mobile-bottom-nav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.mobile-bottom-nav a.active,
.mobile-bottom-nav a:hover {
    color: var(--color-primary);
}

.mobile-bottom-nav a .material-symbols-outlined {
    font-size: 1.5rem;
}

.mobile-bottom-nav a span:last-child {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* =============================================
   FLOATING WHATSAPP BUTTON
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 5.5rem;
    right: 1.25rem;
    z-index: 90;
    width: 3.5rem;
    height: 3.5rem;
    background: #25d366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform var(--transition-fast);
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

.whatsapp-float svg {
    width: 1.75rem;
    height: 1.75rem;
    fill: #fff;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* =============================================
   FADE-IN ANIMATION (intersection observer)
   ============================================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   RESPONSIVE — TABLET (≥ 768px)
   ============================================= */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 5rem;
    }

    .hero-cta-group {
        flex-direction: row;
        justify-content: center;
    }

    .designs-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

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

    .nav-desktop {
        display: flex;
    }

    .btn-whatsapp-header {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .mobile-bottom-nav {
        display: none;
    }

    .whatsapp-float {
        bottom: 2rem;
        right: 2rem;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

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

/* =============================================
   RESPONSIVE — DESKTOP (≥ 1024px)
   ============================================= */
@media (min-width: 1024px) {
    :root {
        --section-padding-y: 7rem;
    }

    .hero h1 {
        font-size: 6rem;
    }

    .designs-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .contact-grid {
        grid-template-columns: 5fr 7fr;
        gap: 4rem;
    }

    .contact-map {
        height: 500px;
    }
}

/* =============================================
   SCROLLBAR UTILITY
   ============================================= */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* =============================================
   WORDPRESS SPECIFIC (WP classes)
   ============================================= */
.wp-block-image img {
    border-radius: var(--radius-lg);
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
