:root {
    --color-bg: #0a0a0a;
    --color-surface: #171717;
    --color-primary: #d4af37; /* Gold */
    --color-primary-glow: rgba(212, 175, 55, 0.3);
    --color-text: #f5f5f5;
    --color-text-muted: #a3a3a3;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Background Glow */
.glow-bg {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--color-primary-glow) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
    animation: slow-pulse 8s infinite alternate;
}

@keyframes slow-pulse {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(2%, 2%); }
}

.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 0 3rem;
    position: relative;
}

.hero-logo {
    max-width: 300px;
    width: 100%;
    border-radius: 50%;
    border: 4px solid var(--color-primary);
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: fade-in-up 1s ease-out forwards;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
    animation: fade-in-up 1s ease-out forwards;
}

.subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    color: var(--color-text);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fade-in-up 1s ease-out 0.2s forwards;
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: fade-in-up 1s ease-out 0.4s forwards;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-primary);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.hero .description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--color-text-muted);
    opacity: 0;
    animation: fade-in-up 1s ease-out 0.6s forwards;
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-text);
}

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

.card {
    border-radius: 20px;
    overflow: hidden;
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(30px);
    animation: fade-in-up 1s ease-out forwards;
}

.card:nth-child(1) { animation-delay: 0.8s; }
.card:nth-child(2) { animation-delay: 1.0s; }
.card:nth-child(3) { animation-delay: 1.2s; }

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.3);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

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

.card-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.card-overlay p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 0;
    text-align: center;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

footer p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    color: var(--color-primary);
}

/* Animations */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Highlight */
.contact-highlight {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--color-primary);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
    text-align: center;
    width: 100%;
    max-width: 600px;
    animation: pulse-border 2s infinite alternate;
}

@keyframes pulse-border {
    0% { border-color: rgba(212, 175, 55, 0.4); box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1); }
    100% { border-color: rgba(212, 175, 55, 1); box-shadow: 0 4px 25px rgba(212, 175, 55, 0.3); }
}

.contact-highlight p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-highlight h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 1.4rem;
    font-weight: 700;
}

.contact-highlight a {
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-highlight a:hover {
    color: var(--color-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
    .hero {
        padding: 4rem 0 2rem;
    }
    .hero-logo {
        max-width: 220px;
        margin-bottom: 1.5rem;
    }
    .logo-title {
        font-size: 2.5rem;
    }
    .subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    .coming-soon-badge {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
    .hero .description {
        font-size: 1rem;
    }
    .gallery {
        padding: 2rem 0 4rem;
    }
    .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    .card-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    .card-overlay h3 {
        font-size: 1.3rem;
    }
}
