/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    overflow-x: hidden;
    background: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.9) contrast(1.1) saturate(1.1);
    min-height: 100vh;
    max-width: none;
    max-height: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 176, 174, 0.4) 0%, rgba(158, 190, 188, 0.3) 100%);
    z-index: 2;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(139, 176, 174, 0.1) 0%, rgba(139, 176, 174, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-logo img {
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 6px 16px rgba(0,0,0,0.7)) brightness(1.3) contrast(1.4);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 16px rgba(0,0,0,0.8)) brightness(1.3) contrast(1.4);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    color: #f8f9fa;
    letter-spacing: -0.02em;
    font-family: 'Inter', sans-serif;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 3rem;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    color: #e9ecef;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}



.opening-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1rem;
    background: rgba(139, 176, 174, 0.2);
    padding: 18px 36px;
    border-radius: 60px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #f8f9fa;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.05em;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator i {
    font-size: 2rem;
    color: white;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* Logo Section */
.logo-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container img {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
    transition: transform 0.3s ease;
}

.logo-container img:hover {
    transform: scale(1.05);
}

/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(139, 176, 174, 0.3) 50%, transparent 100%);
}

.about h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-weight: 300;
    letter-spacing: -0.01em;
    font-family: 'Inter', sans-serif;
}

.about p {
    text-align: center;
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto;
    color: #5a6c7d;
    line-height: 1.8;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

/* Gallery Section */
.gallery {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(139, 176, 174, 0.3) 50%, transparent 100%);
}

.gallery h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 300;
    letter-spacing: -0.01em;
    font-family: 'Inter', sans-serif;
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #8bb0ae;
    margin-bottom: 4rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: white;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(139, 176, 174, 0.3) 50%, transparent 100%);
}

.features h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #2c3e50;
    font-weight: 300;
    letter-spacing: -0.01em;
    font-family: 'Inter', sans-serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
    border: 1px solid rgba(139, 176, 174, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(139, 176, 174, 0.5) 50%, transparent 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(139, 176, 174, 0.15);
    border-color: rgba(139, 176, 174, 0.2);
}

.feature-card i {
    font-size: 2.5rem;
    color: #8bb0ae;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.feature-card:hover i {
    color: #6a9b9a;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.feature-card p {
    color: #5a6c7d;
    line-height: 1.7;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #8bb0ae 0%, #6a9b9a 100%);
    color: white;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}

.contact h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    font-weight: 300;
    letter-spacing: -0.01em;
    font-family: 'Inter', sans-serif;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-item:hover::before {
    transform: scaleX(1);
}

.contact-item:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
}

.contact-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.contact-link {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease;
    border: 1px solid rgba(255,255,255,0.3);
}

.contact-link:hover {
    background: rgba(255,255,255,0.3);
}

/* Info Section */
.info {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.info p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.info-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: white;
    padding: 20px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 400px;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-email:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.info-email i {
    font-size: 1.5rem;
    color: #667eea;
}

.info-email a {
    font-size: 1.2rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-email a:hover {
    color: #667eea;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo img {
    max-width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-info {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #667eea;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-bg-image {
        object-position: center center;
        min-height: 100vh;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .footer-info {
        text-align: center;
        align-items: center;
    }
    
    .hero-logo img {
        max-width: 250px;
        padding: 15px;
        filter: 
            drop-shadow(0 6px 20px rgba(0,0,0,0.9)) 
            brightness(2.1) 
            contrast(1.6) 
            saturate(1.6)
            hue-rotate(0deg)
            invert(0)
            sepia(0)
            grayscale(0);
    }
    
    .footer-logo img {
        max-width: 100px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-logo img {
        max-width: 300px;
    }
    
    .logo-container img {
        max-width: 250px;
    }
    
    .about h2,
    .features h2,
    .contact h2,
    .info h2,
    .gallery h2 {
        font-size: 2rem;
    }
    
    .info-email {
        flex-direction: column;
        gap: 10px;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .hero-bg-image {
        object-position: center center;
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-logo img {
        max-width: 250px;
    }
    
    .logo-container img {
        max-width: 200px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .feature-card,
    .contact-item {
        padding: 1.5rem;
    }
    
    .hero-logo img {
        max-width: 200px;
        padding: 10px;
        filter: 
            drop-shadow(0 4px 16px rgba(0,0,0,0.9)) 
            brightness(2.2) 
            contrast(1.7) 
            saturate(1.7)
            hue-rotate(0deg)
            invert(0)
            sepia(0)
            grayscale(0);
    }
    
    .footer-logo img {
        max-width: 80px;
    }
}
