/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: var(--bg-primary);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    word-wrap: break-word;
    overflow-wrap: break-word;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Canva Logo Colors & Theme Variables */
:root {
    --canva-cyan: #00C4CC;
    --canva-blue: #5865F2;
    --canva-purple: #9747FF;
    --dark-navy: #0f172a;
    --white: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --gradient-canva: linear-gradient(90deg, var(--canva-cyan) 0%, var(--canva-blue) 50%, var(--canva-purple) 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    
    /* Theme variables */
    --bg-primary: var(--dark-navy);
    --bg-secondary: rgba(255, 255, 255, 0.05);
    --bg-card: rgba(255, 255, 255, 0.08);
    --text-color: var(--white);
    --text-muted: rgba(255, 255, 255, 0.7);
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-primary: rgba(0, 0, 0, 0.3);
}

/* Light mode variables */
[data-theme="light"] {
    --bg-primary: #f8fffe;
    --bg-secondary: rgba(6, 95, 70, 0.08);
    --bg-card: rgba(6, 95, 70, 0.06);
    --text-color: #1a202c;
    --text-muted: rgba(26, 32, 44, 0.75);
    --border-color: rgba(6, 95, 70, 0.15);
    --shadow-primary: rgba(6, 95, 70, 0.15);
    --dark-navy: #f8fffe;
    --white: #1a202c;
    --text-primary: #1a202c;
    --text-secondary: rgba(26, 32, 44, 0.85);
    --gradient-card: linear-gradient(145deg, rgba(6, 95, 70, 0.08) 0%, rgba(6, 95, 70, 0.04) 100%);
    
    /* Green color scheme for light mode */
    --canva-cyan: #10b981;
    --canva-blue: #059669;
    --canva-purple: #047857;
    --gradient-canva: linear-gradient(90deg, #10b981 0%, #059669 50%, #047857 100%);
}

/* Subtle Glittering Animation */
@keyframes glitter {
    0%, 100% { 
        opacity: 1; 
        text-shadow: 0 0 8px rgba(0, 196, 204, 0.3);
    }
    50% { 
        opacity: 0.95; 
        text-shadow: 0 0 12px rgba(0, 196, 204, 0.4);
    }
}

/* Removed spotlight animation for cleaner look */

/* Modern text effects - simplified and subtle */
.glitter-text {
    text-shadow: 0 0 8px rgba(0, 196, 204, 0.3);
    animation: glitter 4s infinite alternate ease-in-out;
}

.color-shift {
    font-weight: 600;
    background: var(--gradient-canva);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    /* No animation - static colors only */
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Better section spacing */
section {
    padding: 80px 0;
}

section:first-of-type {
    padding-top: 0;
}

/* Consistent spacing for all sections */
.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-header h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 5vw, 3rem);
}

.section-header p {
    color: var(--text-secondary);
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 600px;
    margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-canva);
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 196, 204, 0.3);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(151, 71, 255, 0.4);
    background: var(--canva-purple);
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: rgba(0, 196, 204, 0.1);
    color: var(--white);
    border-color: var(--canva-cyan);
    box-shadow: 0 8px 25px rgba(0, 196, 204, 0.2);
    transform: translateY(-2px);
}

/* Navigation - Static Design */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0.75rem 0;
    height: 70px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 60px;
    padding: 0.5rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 50px;
}

.nav-logo {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    line-height: 1.2;
}

.nav-logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-logo:hover::after {
    transform: scaleX(1);
}

.nav-logo:hover {
    color: var(--canva-cyan);
    text-shadow: 0 0 15px rgba(0, 196, 204, 0.4);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.nav-link:hover {
    color: var(--white);
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--canva-cyan);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-link:hover::after {
    width: 80%;
}

.nav-cta {
    background: var(--gradient-canva) !important;
    color: var(--white) !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    white-space: nowrap !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--canva-purple) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(151, 71, 255, 0.4) !important;
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark-navy) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
    text-align: center;
}

/* Night Sky Background */
.night-sky {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.stars-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.star {
    position: absolute;
    background: var(--canva-cyan);
    border-radius: 50%;
    animation: twinkle 3s infinite ease-in-out;
}

.star-1 { width: 3px; height: 3px; top: 20%; left: 10%; animation-delay: 0s; }
.star-2 { width: 2px; height: 2px; top: 30%; left: 20%; animation-delay: 0.5s; }
.star-3 { width: 4px; height: 4px; top: 15%; left: 60%; animation-delay: 1s; }
.star-4 { width: 2px; height: 2px; top: 40%; left: 80%; animation-delay: 1.5s; }
.star-5 { width: 3px; height: 3px; top: 60%; left: 15%; animation-delay: 2s; }
.star-6 { width: 2px; height: 2px; top: 25%; left: 85%; animation-delay: 2.5s; }
.star-7 { width: 4px; height: 4px; top: 70%; left: 70%; animation-delay: 3s; }
.star-8 { width: 3px; height: 3px; top: 45%; left: 40%; animation-delay: 0.8s; }
.star-9 { width: 2px; height: 2px; top: 35%; left: 90%; animation-delay: 1.8s; }
.star-10 { width: 3px; height: 3px; top: 80%; left: 25%; animation-delay: 2.8s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.moon {
    position: absolute;
    top: 10%;
    right: 15%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 30%, var(--canva-purple) 0%, var(--canva-blue) 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(151, 71, 255, 0.4);
    animation: moonGlow 8s ease-in-out infinite;
}

@keyframes moonGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(167, 139, 250, 0.4); }
    50% { box-shadow: 0 0 40px rgba(167, 139, 250, 0.7); }
}

.shooting-star {
    position: absolute;
    top: 25%;
    left: -10%;
    width: 2px;
    height: 2px;
    background: var(--canva-cyan);
    border-radius: 50%;
    animation: shooting 6s linear infinite;
}

@keyframes shooting {
    0% { transform: translateX(0) translateY(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(120vw) translateY(50px); opacity: 0; }
}

/* Sparkles */
.sparkles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--canva-blue);
    border-radius: 50%;
    animation: sparkleFloat 4s ease-in-out infinite;
}

/* Background Buildings */
.background-buildings {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.bg-left-building {
    grid-column: 1;
    justify-self: end;
    opacity: 0.6;
    transform: scale(1.2);
    z-index: 1;
    filter: drop-shadow(0 0 20px rgba(0, 196, 204, 0.4));
}

.bg-right-building {
    grid-column: 3;
    justify-self: start;
    opacity: 0.6;
    transform: scale(1.2);
    z-index: 1;
    filter: drop-shadow(0 0 20px rgba(0, 196, 204, 0.4));
}

.sparkle-1 { top: 15%; left: 25%; animation-delay: 0s; }
.sparkle-2 { top: 35%; left: 75%; animation-delay: 1s; }
.sparkle-3 { top: 55%; left: 30%; animation-delay: 2s; }
.sparkle-4 { top: 75%; left: 65%; animation-delay: 3s; }
.sparkle-5 { top: 25%; left: 50%; animation-delay: 1.5s; }

@keyframes sparkleFloat {
    0%, 100% { 
        transform: translateY(0) scale(1); 
        opacity: 0.6; 
        box-shadow: 0 0 5px currentColor;
    }
    50% { 
        transform: translateY(-20px) scale(1.3); 
        opacity: 1; 
        box-shadow: 0 0 15px currentColor;
    }
}

/* Hero Container and Content */
.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: center;
    min-height: 70vh;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    grid-column: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 196, 204, 0.1);
    border: 1px solid rgba(0, 196, 204, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--canva-cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gradient-text {
    background: var(--gradient-canva);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.title-line-1,
.title-line-2 {
    display: block;
    line-height: 0.9;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
    margin: 2.5rem 0;
    justify-items: center;
    max-width: 1000px;
    margin: 2.5rem auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    min-height: 80px;
    justify-content: center;
}

.feature-item .feature-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.feature-item:hover {
    background: rgba(0, 196, 204, 0.1);
    border-color: rgba(0, 196, 204, 0.3);
    transform: translateY(-2px);
}

.feature-item i {
    font-size: 1.1rem;
    color: var(--canva-cyan);
}

.feature-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}

.feature-item small {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    line-height: 1.3;
    margin-top: 0.2rem;
}

/* Hero Typography */
.hero-title {
    font-size: clamp(2.2rem, 8vw, 5.5rem);
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0, 196, 204, 0.3);
    line-height: 0.9;
}

.hero-subtitle {
    font-size: clamp(1rem, 4vw, 2rem);
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    opacity: 0.95;
}

.subtitle-line-1,
.subtitle-line-2 {
    display: block;
    line-height: 1.3;
}

.subtitle-line-1 {
    margin-bottom: 0.3rem;
}

.subtitle-line-2 {
    font-weight: 700;
}

.hero-description {
    font-size: clamp(0.9rem, 2.5vw, 1.3rem);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.85;
    color: var(--canva-purple);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: nowrap;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    justify-items: center;
    max-width: 600px;
    margin: 3rem auto 0;
}

.stat-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    min-width: 140px;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 196, 204, 0.3);
    box-shadow: 0 12px 32px rgba(0, 196, 204, 0.15);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--canva-cyan);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--canva-purple);
    font-weight: 500;
    opacity: 0.9;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.section-header p {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: var(--canva-purple);
    max-width: 650px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.5;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-navy), var(--deep-purple));
    color: white;
}

.venue-highlights {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.highlight {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--canva-cyan);
}

.highlight-label {
    font-weight: 500;
    color: var(--silver-accent);
}

.highlight-value {
    font-weight: 700;
    font-size: 1.1rem;
}

.technical-specs {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.spec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--canva-cyan);
}

.spec-label {
    font-weight: 500;
    color: var(--silver-accent);
}

.spec-value {
    font-weight: 700;
    font-size: 1.1rem;
}

.interactive-card {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.interactive-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.interactive-card:hover::before {
    opacity: 0.1;
}

.interactive-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 196, 204, 0.3);
}

.interactive-card:active {
    transform: translateY(-5px) scale(1.02);
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 196, 204, 0.3);
    box-shadow: 0 12px 32px rgba(0, 196, 204, 0.15);
}

.feature i {
    font-size: 3rem;
    color: var(--canva-cyan);
    margin-bottom: 1rem;
}

.feature h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

/* Venues Section */
.venues {
    padding: 6rem 0;
}

.venue-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.venue-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.venue-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 196, 204, 0.3);
    box-shadow: 0 15px 40px rgba(0, 196, 204, 0.15);
}

.venue-image {
    height: 300px;
    overflow: hidden;
    background: var(--gradient-card);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.venue-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 69, 19, 0.1), rgba(210, 180, 140, 0.1));
    z-index: 1;
}

/* Specific venue images */
.venue-card:first-child .venue-image {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('https://images.unsplash.com/photo-1465619801265-b351952f5566?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
}

.venue-card:last-child .venue-image {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('https://images.unsplash.com/photo-1525610553991-2bede1a236e2?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.venue-card:hover .venue-image img {
    transform: scale(1.05);
}

.venue-info {
    padding: 2rem;
}

.venue-info h3 {
    font-size: 2rem;
    color: var(--canva-cyan);
    margin-bottom: 1rem;
}

.venue-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.venue-details {
    margin-bottom: 1.5rem;
}

.detail {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--text-primary);
}

.detail i {
    color: var(--canva-cyan);
    margin-right: 0.5rem;
    width: 20px;
}

.venue-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background: rgba(0, 196, 204, 0.1);
    border: 1px solid rgba(0, 196, 204, 0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--canva-cyan);
}

.guest-feedback {
    font-style: italic;
    color: var(--canva-cyan);
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--dark-navy);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-category {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.service-category h3 {
    color: var(--canva-cyan);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-category i {
    font-size: 1.5rem;
}

.service-category ul {
    list-style: none;
}

.service-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.service-category li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--canva-cyan);
    font-weight: bold;
}

.service-category li:last-child {
    border-bottom: none;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    background: var(--gradient-card);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 69, 19, 0.05), rgba(210, 180, 140, 0.05));
    z-index: 1;
}

/* Gallery placeholder images */
.gallery-item:nth-child(1) {
    background: url('https://images.unsplash.com/photo-1519167758481-83f29d8ace68?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') center/cover no-repeat;
}

.gallery-item:nth-child(2) {
    background: url('https://images.unsplash.com/photo-1511285560929-80b456fea0bc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') center/cover no-repeat;
}

.gallery-item:nth-child(3) {
    background: url('https://images.unsplash.com/photo-1584132915807-fd1f5fbc078f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') center/cover no-repeat;
}

.gallery-item:nth-child(4) {
    background: url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') center/cover no-repeat;
}

.gallery-item:nth-child(5) {
    background: url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') center/cover no-repeat;
}

.gallery-item:nth-child(6) {
    background: url('https://images.unsplash.com/photo-1465619801265-b351952f5566?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') center/cover no-repeat;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.9));
    color: var(--white);
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: white;
}

.contact a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact a:hover {
    text-shadow: 0 0 10px currentColor;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.contact-item i {
    font-size: 2rem;
    color: var(--canva-cyan);
    margin-top: 0.5rem;
}

.contact-item h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--canva-cyan);
    box-shadow: 0 0 0 3px rgba(0, 196, 204, 0.1);
}

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

/* Footer */
.footer {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--canva-cyan);
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--canva-cyan);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        border-top: 1px solid rgba(0, 196, 204, 0.2);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        padding: 0 2rem;
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: 80vh;
    }
    
    .hero-content {
        grid-column: 1;
    }
    
    .background-buildings {
        display: none;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding: 120px 0 80px;
        min-height: 90vh;
    }

    .hero-container {
        gap: 2rem;
    }

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

    .hero-stats {
        gap: 1rem;
        margin-top: 2rem;
    }

    .stat-card {
        min-width: 120px;
        padding: 1rem 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        flex-wrap: nowrap;
    }

    .btn {
        white-space: nowrap;
        padding: 12px 24px;
        font-size: 15px;
        flex: 0 0 auto;
        min-width: 180px;
        text-align: center;
    }

    .moon {
        width: 40px;
        height: 40px;
        top: 8%;
        right: 10%;
    }

    .sparkle {
        width: 4px;
        height: 4px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .venue-cards {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

/* Medium screens - buildings in grid */
@media (min-width: 769px) and (max-width: 1199px) {
    .bg-left-building {
        opacity: 0.5;
        transform: scale(1.0);
    }
    
    .bg-right-building {
        opacity: 0.5;
        transform: scale(1.0);
    }
}

/* Large screens - more visible buildings */
@media (min-width: 1200px) {
    .bg-left-building {
        opacity: 0.7;
        transform: scale(1.4);
    }
    
    .bg-right-building {
        opacity: 0.7;
        transform: scale(1.4);
    }
}

/* Extra small screens */
@media (max-width: 375px) {
    .container {
        padding: 0 16px;
    }

    .hero-container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 5.5rem);
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 4vw, 2rem);
    }

    .hero-description {
        font-size: clamp(0.8rem, 2.5vw, 1.3rem);
    }

    .btn {
        padding: 12px 16px;
        font-size: 14px;
        min-width: 160px;
    }

    .feature-item {
        padding: 8px 12px;
        font-size: 0.8rem;
        min-width: 120px;
    }

    .stat-card {
        min-width: 100px;
        padding: 0.8rem;
    }

    .nav-logo {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 24px;
    }

    .hero-container {
        padding: 0 24px;
        min-height: 85vh;
    }

    .hero {
        padding: 130px 0 80px;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        max-width: 100%;
    }

    .feature-item {
        padding: 10px 16px;
        font-size: 0.9rem;
        min-width: 140px;
        text-align: center;
        width: 100%;
        max-width: 280px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        max-width: 100%;
    }

    .stat-card {
        min-width: 120px;
        padding: 1rem;
        width: 100%;
        max-width: 200px;
        text-align: center;
    }

    .venue-cards {
        grid-template-columns: 1fr;
    }

    .venue-card {
        margin: 0 8px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .sparkle {
        width: 3px;
        height: 3px;
    }

    .moon {
        width: 30px;
        height: 30px;
    }

    .hero-buttons {
        width: 100%;
        max-width: 320px;
        margin: 3rem auto 0;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
        font-size: 16px;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Smooth scrolling and animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Building Illustrations */
.building-illustration {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.6;
    filter: drop-shadow(0 0 10px rgba(0, 196, 204, 0.2));
    justify-self: center;
    transition: opacity 0.3s ease;
}

.building-illustration:hover {
    opacity: 0.8;
    filter: drop-shadow(0 0 15px rgba(0, 196, 204, 0.3));
}





/* Victorian House - Left Building */
.house-structure {
    position: relative;
    width: 150px;
    height: 170px;
    transform: scale(0.9);
}

.house-base {
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 140px;
    height: 120px;
    border: 2px solid var(--canva-cyan);
    background: transparent;
}

.house-porch {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 180px;
    height: 40px;
    border: 2px solid var(--canva-cyan);
    background: transparent;
}

.house-roof {
    position: absolute;
    top: 20px;
    left: 15px;
    width: 150px;
    height: 60px;
    border: 2px solid var(--canva-cyan);
    background: transparent;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.house-chimney {
    position: absolute;
    width: 12px;
    height: 30px;
    background: transparent;
    border: 2px solid var(--canva-cyan);
}

.house-chimney-1 {
    top: 5px;
    left: 40px;
}

.house-chimney-2 {
    top: 10px;
    right: 30px;
}

.house-windows .window {
    position: absolute;
    width: 16px;
    height: 20px;
    border: 2px solid var(--canva-cyan);
    background: transparent;
}

.house-windows .window-1 { bottom: 70px; left: 30px; }
.house-windows .window-2 { bottom: 70px; left: 60px; }
.house-windows .window-3 { bottom: 70px; right: 60px; }
.house-windows .window-4 { bottom: 70px; right: 30px; }
.house-windows .window-5 { bottom: 40px; left: 30px; }
.house-windows .window-6 { bottom: 40px; left: 60px; }
.house-windows .window-7 { bottom: 40px; right: 60px; }
.house-windows .window-8 { bottom: 40px; right: 30px; }

.house-columns .column {
    position: absolute;
    width: 6px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--canva-cyan);
}

.house-columns .column-1 { bottom: 0; left: 10px; }
.house-columns .column-2 { bottom: 0; left: 40px; }
.house-columns .column-3 { bottom: 0; right: 40px; }
.house-columns .column-4 { bottom: 0; right: 10px; }

.house-door {
    position: absolute;
    bottom: 0;
    left: 80px;
    width: 20px;
    height: 35px;
    border: 2px solid var(--canva-cyan);
    background: transparent;
}

/* Church - Right Building */
.church-structure {
    position: relative;
    width: 140px;
    height: 200px;
    transform: scale(0.9);
}

.church-base {
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 110px;
    height: 120px;
    border: 2px solid var(--canva-cyan);
    background: transparent;
}

.church-tower {
    position: absolute;
    bottom: 120px;
    left: 60px;
    width: 30px;
    height: 80px;
    border: 2px solid var(--canva-cyan);
    background: transparent;
}

.church-bell-section {
    position: absolute;
    bottom: 160px;
    left: 55px;
    width: 40px;
    height: 25px;
    border: 2px solid var(--canva-cyan);
    background: transparent;
}

.church-spire {
    position: absolute;
    bottom: 185px;
    left: 67px;
    width: 16px;
    height: 35px;
    border: 2px solid var(--canva-cyan);
    background: transparent;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.church-cross {
    position: absolute;
    top: 0;
    left: 73px;
    width: 4px;
    height: 12px;
    background: var(--canva-cyan);
}

.church-cross::before {
    content: '';
    position: absolute;
    top: 3px;
    left: -3px;
    width: 10px;
    height: 3px;
    background: var(--canva-cyan);
}

.church-windows .church-window {
    position: absolute;
    border: 2px solid var(--canva-cyan);
    background: transparent;
}

.church-windows .gothic-window-1 {
    bottom: 70px;
    left: 30px;
    width: 16px;
    height: 30px;
    border-radius: 8px 8px 0 0;
}

.church-windows .gothic-window-2 {
    bottom: 70px;
    right: 30px;
    width: 16px;
    height: 30px;
    border-radius: 8px 8px 0 0;
}

.church-windows .side-window-1 {
    bottom: 80px;
    left: 5px;
    width: 12px;
    height: 20px;
    border-radius: 6px 6px 0 0;
}

.church-windows .side-window-2 {
    bottom: 80px;
    right: 5px;
    width: 12px;
    height: 20px;
    border-radius: 6px 6px 0 0;
}

.church-windows .round-window {
    bottom: 40px;
    left: 65px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.church-door {
    position: absolute;
    bottom: 0;
    left: 65px;
    width: 20px;
    height: 35px;
    border: 2px solid var(--canva-cyan);
    background: transparent;
    border-radius: 10px 10px 0 0;
}

/* Loading states and interactions */
img {
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Location Section */
.location {
    padding: 120px 0;
    background: var(--dark-navy);
    position: relative;
    overflow: hidden;
}

.location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.05;
    z-index: 1;
}

.location .container {
    position: relative;
    z-index: 2;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 4rem;
}

.location-details h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.address-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: var(--gradient-card);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.address-info i {
    color: var(--canva-cyan);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.address-info div {
    font-size: 1.1rem;
    line-height: 1.6;
}

.location-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--gradient-card);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 196, 204, 0.2);
    border-color: rgba(0, 196, 204, 0.3);
}

.feature-item i {
    color: var(--canva-cyan);
    font-size: 1rem;
}

.feature-item span {
    font-weight: 500;
    color: var(--text-primary);
}

.directions {
    padding: 1.5rem;
    background: var(--gradient-card);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.directions p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.map-container {
    background: var(--gradient-card);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    position: relative;
}

.map-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 196, 204, 0.1), rgba(151, 71, 255, 0.1));
    z-index: 1;
    pointer-events: none;
}

.map-wrapper iframe {
    border-radius: 15px;
    position: relative;
    z-index: 2;
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
    /* Navigation adjustments */
    .navbar {
        height: 60px;
        padding: 0.5rem 0;
    }
    
    .navbar.scrolled {
        height: 55px;
        padding: 0.4rem 0;
    }
    
    .nav-cta {
        padding: 8px 16px !important;
        font-size: 0.9rem !important;
        white-space: nowrap !important;
    }
    
    /* Mobile - show buildings separately positioned higher */
    .background-buildings {
        display: block;
        position: absolute;
        top: -50px; /* Position higher on mobile */
        left: 0;
        width: 100%;
        height: 60%; /* Reduce height to avoid overlap */
        pointer-events: none;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 20px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .bg-left-building {
        opacity: 0.3;
        transform: scale(0.6) translateY(-20px);
        z-index: 1;
        filter: drop-shadow(0 0 15px rgba(0, 196, 204, 0.3));
        margin-bottom: 1rem;
    }
    
    .bg-right-building {
        opacity: 0.3;
        transform: scale(0.6) translateY(-10px);
        z-index: 1;
        filter: drop-shadow(0 0 15px rgba(0, 196, 204, 0.3));
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        grid-column: 1;
    }
    
    /* Location section adjustments */
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-features {
        grid-template-columns: 1fr;
    }
    
    .map-wrapper {
        height: 300px;
    }
    
    .location-details h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        height: 55px;
        padding: 0.4rem 0;
    }
    
    .navbar.scrolled {
        height: 50px;
        padding: 0.3rem 0;
    }
    
    .nav-cta {
        padding: 6px 12px !important;
        font-size: 0.8rem !important;
        white-space: nowrap !important;
    }
}

/* Theme Toggle Button - Bottom Left */
.theme-toggle {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px var(--shadow-primary);
}

.theme-toggle:hover {
    transform: translateY(-2px);
    background: var(--canva-cyan);
    color: white;
    box-shadow: 0 6px 25px rgba(0, 196, 204, 0.4);
}

.theme-toggle i {
    transition: transform 0.3s ease;
}

.theme-toggle:hover i {
    transform: rotate(180deg);
}

/* Translate Dropdown - Bottom Right */
.translate-dropdown {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.translate-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-color);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px var(--shadow-primary);
}

.translate-btn:hover {
    background: var(--canva-cyan);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 196, 204, 0.4);
}

.translate-btn i {
    font-size: 1.1rem;
}

.translate-menu {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 160px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px var(--shadow-primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.translate-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.translate-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.translate-option:hover {
    background: var(--bg-secondary);
    color: var(--canva-cyan);
}

.translate-option.active {
    background: var(--canva-cyan);
    color: white;
}

.translate-option .flag {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

    /* Mobile adjustments for bottom buttons */
@media (max-width: 768px) {
    .theme-toggle {
        width: 45px;
        height: 45px;
        bottom: 15px;
        left: 15px;
        font-size: 1.1rem;
    }
    
    .translate-btn {
        padding: 10px 14px;
        font-size: 0.85rem;
        bottom: 15px;
        right: 15px;
    }
    
    .translate-menu {
        min-width: 140px;
    }
}

/* Light Mode Specific Enhancements */
[data-theme="light"] {
    /* Enhanced navbar styling */
    .navbar {
        background: rgba(248, 255, 254, 0.95);
        border-bottom: 1px solid rgba(6, 95, 70, 0.1);
        box-shadow: 0 2px 20px rgba(6, 95, 70, 0.1);
    }
    
    .navbar.scrolled {
        background: rgba(248, 255, 254, 0.98);
        box-shadow: 0 4px 30px rgba(6, 95, 70, 0.15);
    }
    
    /* Enhanced hero section */
    .hero {
        background: linear-gradient(135deg, #f8fffe 0%, #f0fdfa 100%);
    }
    
    .hero::before {
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.1) 100%);
    }
    
    /* Enhanced feature cards */
    .feature-item {
        background: rgba(255, 255, 255, 0.8);
        border: 1px solid rgba(6, 95, 70, 0.12);
        box-shadow: 0 4px 20px rgba(6, 95, 70, 0.08);
    }
    
    .feature-item:hover {
        background: rgba(16, 185, 129, 0.1);
        border-color: rgba(16, 185, 129, 0.3);
        box-shadow: 0 6px 30px rgba(6, 95, 70, 0.15);
    }
    
    /* Enhanced buttons */
    .btn-primary {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        border: none;
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
        color: white;
    }
    
    .btn-primary:hover {
        background: linear-gradient(135deg, #059669 0%, #047857 100%);
        box-shadow: 0 6px 30px rgba(16, 185, 129, 0.4);
        transform: translateY(-2px);
    }
    
    .btn-secondary {
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(6, 95, 70, 0.2);
        color: var(--text-color);
        box-shadow: 0 4px 20px rgba(6, 95, 70, 0.1);
    }
    
    .btn-secondary:hover {
        background: rgba(16, 185, 129, 0.1);
        border-color: rgba(16, 185, 129, 0.4);
        color: #047857;
        box-shadow: 0 6px 30px rgba(6, 95, 70, 0.2);
    }
    
    /* Enhanced navigation links */
    .nav-link {
        color: var(--text-color);
    }
    
    .nav-link:hover {
        color: #10b981;
    }
    
    /* Enhanced stats cards */
    .stat-card {
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(6, 95, 70, 0.1);
        box-shadow: 0 8px 32px rgba(6, 95, 70, 0.08);
    }
    
    .stat-card:hover {
        box-shadow: 0 12px 40px rgba(6, 95, 70, 0.15);
    }
    
    /* Enhanced sections */
    .section {
        background: rgba(248, 255, 254, 0.5);
    }
    
    .section:nth-child(even) {
        background: rgba(240, 253, 250, 0.5);
    }
    
    /* Enhanced footer */
    .footer {
        background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 100%);
        border-top: 1px solid rgba(6, 95, 70, 0.1);
    }
    
    /* Enhanced form elements */
    .form-group input,
    .form-group textarea {
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(6, 95, 70, 0.2);
        color: var(--text-color);
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
        border-color: #10b981;
        box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    }
    
    /* Enhanced color-shift elements */
    .color-shift {
        background: linear-gradient(90deg, #10b981 0%, #059669 50%, #047857 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    /* Enhanced theme toggle in light mode */
    .theme-toggle {
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(6, 95, 70, 0.2);
        box-shadow: 0 4px 20px rgba(6, 95, 70, 0.1);
    }
    
    .theme-toggle:hover {
        background: #10b981;
        box-shadow: 0 6px 25px rgba(16, 185, 129, 0.3);
    }
    
    /* Enhanced translate dropdown in light mode */
    .translate-btn {
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(6, 95, 70, 0.2);
        box-shadow: 0 4px 20px rgba(6, 95, 70, 0.1);
    }
    
    .translate-btn:hover {
        background: #10b981;
        box-shadow: 0 6px 25px rgba(16, 185, 129, 0.3);
    }
    
    .translate-menu {
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(6, 95, 70, 0.2);
        box-shadow: 0 8px 32px rgba(6, 95, 70, 0.15);
    }
    
    .translate-option:hover {
        background: rgba(16, 185, 129, 0.1);
        color: #047857;
    }
    
    .translate-option.active {
        background: #10b981;
        color: white;
    }
    
    /* Mobile-specific light mode adjustments */
    @media (max-width: 768px) {
        .hero {
            background: linear-gradient(135deg, #f8fffe 0%, #f0fdfa 50%, #ecfdf5 100%);
        }
        
        .hero-features {
            background: rgba(255, 255, 255, 0.6);
            border-radius: 20px;
            padding: 1.5rem;
            margin: 2rem auto;
            backdrop-filter: blur(10px);
        }
        
        .navbar {
            background: rgba(248, 255, 254, 0.98);
            backdrop-filter: blur(15px);
        }
        
        .bg-left-building,
        .bg-right-building {
            opacity: 0.15;
            filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.2));
        }
        
        .feature-item {
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid rgba(6, 95, 70, 0.15);
        }
        
        .feature-item:hover {
            background: rgba(16, 185, 129, 0.05);
        }
        
        .btn-primary {
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
        }
        
        .btn-secondary {
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid rgba(6, 95, 70, 0.25);
        }
    }
}