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

body {
    font-family: 'legitima', serif;
    line-height: 1.4;
    background-color: #000213;
    background-image: linear-gradient(rgba(10, 36, 99, 0.5), rgba(13, 71, 161, 0.5)), 
                     url('assets/images/EW-bg1.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    color: #ffffff;
    min-height: 100vh;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    body {
        background-color: #000213;
        background-image: linear-gradient(rgba(10, 36, 99, 0.5), rgba(13, 71, 161, 0.5)), 
                         url('assets/images/EW-bg-mobile.jpg');
        background-size: 100% auto;
        background-position: center top;
        background-repeat: no-repeat;
        background-attachment: fixed;
        -webkit-background-attachment: fixed;
        -moz-background-attachment: fixed;
        -o-background-attachment: fixed;
    }
}

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

@keyframes softGlow {
    0% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }
}

.coming-soon-badge {
    text-align: center;
    font-family: 'mr-eaves-xl-sans', sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 auto 2rem;
    max-width: 200px;
    display: block;
    width: fit-content;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.logo {
    display: block;
    max-width: 300px;
    height: auto;
    margin: 0 auto 3rem;
}

.content {
    text-align: center;
    margin-bottom: 3rem;
}

.custom-tank-button {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: #ff6b35;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-family: 'mr-eaves-xl-sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.custom-tank-button:hover {
    background: #ff8c5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.coming-soon {
    font-size: 1.4rem;
    color: #e0e0e0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    max-width: 800px;
    margin: 0 auto;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .coming-soon {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    aspect-ratio: 1;
}

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

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.overlay .title {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
}

@media (max-width: 1200px) {
    .gallery {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .coming-soon-badge {
        margin: 0 auto 1rem;
        width: fit-content;
    }
}

@media (max-width: 480px) {
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .logo {
        max-width: 250px;
    }
}

footer {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
}

footer a:hover {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    footer {
        margin-top: 3rem;
        padding: 1.5rem 0;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    top: 0;
    left: 0;
    text-align: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: zoom 0.3s;
}

@keyframes zoom {
    from { transform: scale(0.1); }
    to { transform: scale(1); }
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover {
    color: #bbb;
    text-decoration: none;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
    font-size: 1.2rem;
}

/* Add cursor pointer to gallery images */
.gallery-img {
    cursor: pointer;
} 