body {
    font-family: 'Inter', sans-serif;
    background-color: #0C1C2B;
    color: #e2e8f0;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.header-content {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 300;
    line-height: 1.65;
    margin-top: 3.5rem;
    margin-bottom: 3.2rem;
    /* max-width: 720px; */
}

/* Logo Container */
.logo-container {
    position: relative;
    display: inline-block;
    width: 380px;
    height: 380px;
}

/* Main Orange Pulsating Glow */
.logo-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.45) 0%, rgba(255, 107, 0, 0) 70%);
    border-radius: 50%;
    filter: blur(20px);
    animation: pulse-glow 3s ease-in-out infinite;
    z-index: -1;
    opacity: 0.9;
}

/* Secondary softer glow layer for more depth */
.logo-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 140, 50, 0.25) 0%, rgba(255, 107, 0, 0) 70%);
    border-radius: 50%;
    filter: blur(35px);
    animation: pulse-glow 3s ease-in-out 1.2s infinite;
    z-index: -2;
}

.logo {
    width: 380px;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 40px rgb(255, 81, 1));
}

/* Pulsing Glow Animation */
@keyframes pulse-glow {
    0% {
        transform: translate(-50%, -50%) scale(0.85);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.20);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.85);
        opacity: 0.6;
    }
}

/* Responsive */
@media (max-width: 480px) {
    .logo-container {
        width: 300px;
        height: 300px;
    }
    .logo {
        width: 300px;
    }
    .logo-container::before,
    .logo-container::after {
        width: 300px;
        height: 300px;
    }
}

.coming-soon{
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    font-weight: 300;
    line-height: 1.65;
    margin-top: 3.5rem;
    margin-bottom: 3.2rem;
}

/* Lake Image with top and bottom shadow fade */
.lake-image-container {
    position: relative;
    width: 100%;
    margin: 2.5rem auto 0;
    overflow: hidden;
}

.lake-image-container::before,
.lake-image-container::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 90px;
    z-index: 2;
    pointer-events: none;
}

.lake-image-container::before {
    top: 0;
    background: linear-gradient(to bottom, #0C1C2B, transparent);
}

.lake-image-container::after {
    bottom: 0;
    background: linear-gradient(to top, #0C1C2B, transparent);
}

.lake-image {
    width: 100%;
    height: clamp(200px, 35vw, 360px);
    object-fit: cover;
    display: block;
}

/* .gallery-section {
    width: 100%;
    padding: 0 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 56px;
} */

/* ===================== GALLERY ===================== */
.gallery-section {
    width: 100%;
    margin: 7rem auto 3rem;
    padding: 0 20px;           /* Balanced side padding */
}

.gallery-row {
    display: flex;
    gap: 16px;                 /* Better horizontal gap */
    margin: 0 60px 32px;       /* Your original desktop margin */
    flex-wrap: wrap;
}

.gallery-row:nth-child(2) {  
    flex-wrap: nowrap;
}

.gallery-img {
    flex: 1;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.04);
}

/* First row: 3 images */
.gallery-row:first-child .gallery-img {
    flex: 1 1 32%;
    height: 240px;
}

/* Second row: 4 images */
.gallery-row:nth-child(2) .gallery-img {
    flex: 1 1 23.5%;
    min-width: 23.5%;
}

/* Third & Fourth row: 3 images */
.gallery-row:nth-child(3) .gallery-img {
    flex: 1 1 32%;
    height: 280px;
}

.gallery-row:nth-child(4) .gallery-img {
    flex: 1 1 32%;
    height: 210px;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 768px) {
    .gallery-row {
        margin: 0 30px 28px;     /* Reduced side margin for tablet */
        gap: 14px;
        margin-bottom: 28px;
    }
    
    .gallery-img {
        height: 210px;
    }
    
    .gallery-row:nth-child(2) {
        flex-wrap: wrap;
    }
    
    .gallery-row:nth-child(2) .gallery-img {
        flex: 1 1 48%;
        min-width: 48%;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 0 15px;
    }
    
    .gallery-row {
        margin: 0 15px 20px;     /* Equal spacing from left & right */
        gap: 12px;
        margin-bottom: 20px;
        flex-direction: column;   /* One image per row */
    }
    
    .gallery-row:nth-child(2) {
        flex-direction: column;   /* Force one per row */
    }
    
    .gallery-img {
        height: 195px;            /* Good visible height on mobile */
        width: 100%;              /* Full width */
        flex: none;               /* Important for column layout */
    }
    
    /* Override all special heights on mobile */
    .gallery-row:first-child .gallery-img,
    .gallery-row:nth-child(3) .gallery-img,
    .gallery-row:nth-child(4) .gallery-img,
    .gallery-row:nth-child(2) .gallery-img {
        height: 195px;
    }
}


/* ===================== FOOTER ===================== */
.footer-section{
    text-align: center;
    padding: 0 20px;
    max-width: 640px;
    margin: 30px auto;
}

.footer-tagline{
    font-size: clamp(1.4rem, 4vw, 1.9rem);
    font-weight: 300;
    letter-spacing: 0.04em;
    color: #e2e8f0;
    margin-bottom: 44px;
}

.footer-bar{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #1e3a52;
    padding-top: 8px;
    gap: 16px;
}

.footer-brand{
    margin-top: 16px;
}

.footer-brand p:first-child{
    font-size: 0.7rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-brand p:last-child {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #e2e8f0;
}

.email-input{
    background: transparent;
    border: 2px solid #6366f1;
    border-radius: 6px;
    padding: 9px 14px;
    color: white;
    outline: none;
    font-size: 13px;
    font-family: inherit;
    width: 200px;
    transition: border-color 0.3s ease;
    pointer-events: auto;
    height: 37px;
}

.social-links{
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon{
    color: #64748b;
    transition: color 0.3s ease;
    display: inline-flex;
    pointer-events: auto;
}

.copyright{
    margin-top: 28px;
    font-size: 0.58rem;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
