/* Global Styles */
body {
    font-family: 'Cormorant Garamond', serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.container-fluid {
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
header {
    background: transparent;
    padding: 2rem 0;
    position: absolute;
    width: 100%;
    z-index: 10;
}

header h1 {
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8),
                 -1px -1px 0 rgba(0,0,0,0.8),  
                 1px -1px 0 rgba(0,0,0,0.8),
                 -1px 1px 0 rgba(0,0,0,0.8),
                 1px 1px 0 rgba(0,0,0,0.8);
}

header h2 {
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8),
                 -1px -1px 0 rgba(0,0,0,0.8),
                 1px -1px 0 rgba(0,0,0,0.8),
                 -1px 1px 0 rgba(0,0,0,0.8),
                 1px 1px 0 rgba(0,0,0,0.8);
}

/* Hero Section Styles */
.hero-section {
    height: 100vh;
    width: 100vw;
    position: relative;
    flex: 1;
}

.image-gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gallery-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out, transform 2s ease-in-out;
    transform: scale(1.1);
}

.gallery-img.active {
    opacity: 1;
    transform: scale(1);
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 5;
}

.coming-soon-content {
    padding: 3rem 4rem;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.6);
    max-width: 800px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.coming-soon-content:hover {
    transform: translateY(-5px);
}

.coming-soon-content p {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8),
                 -1px -1px 0 rgba(0,0,0,0.8),
                 1px -1px 0 rgba(0,0,0,0.8),
                 -1px 1px 0 rgba(0,0,0,0.8),
                 1px 1px 0 rgba(0,0,0,0.8);
}

/* WhatsApp Button Styles */
.contact-section {
    position: absolute;
    bottom: 2rem;
    width: 100%;
    z-index: 10;
}

.btn-whatsapp {
    font-family: 'Cormorant Garamond', serif;
    background-color: #25D366;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.2rem;
    }
    
    header h2 {
        font-size: 1.4rem;
    }
    
    .coming-soon-content {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .coming-soon-content p {
        font-size: 1.5rem;
        line-height: 1.3;
        letter-spacing: 0.5px;
    }
    
    .contact-section {
        bottom: 0;
    }
    
    .btn-whatsapp {
        font-size: 1.1rem;
        padding: 0.8rem 2rem;
    }
} 