@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --primary: #1a1412; /* Very Dark Brown / Charcoal */
    --secondary: #2d1e18; /* Dark Espresso */
    --accent: #d4af37; /* Metallic Gold */
    --text-dark: #ffffff; /* White text for contrast */
    --text-muted: #d1c1bb;
    --glass: rgba(255, 255, 255, 0.05);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

/* Background Image Overlay */
.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5; /* Balanced opacity */
    animation: zoomOut 20s infinite alternate;
}

/* Dark Overlay for Text Readability */
.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(26, 20, 18, 0.8) 0%, 
        rgba(26, 20, 18, 0.6) 50%, 
        rgba(26, 20, 18, 0.9) 100%);
    z-index: 1;
}

/* Creative Background Particles */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(180, 138, 102, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(180, 138, 102, 0.1) 0%, transparent 30%);
    pointer-events: none;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    filter: blur(5px);
    animation: floatParticle var(--d) linear infinite;
    opacity: 0;
}

@keyframes floatParticle {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}

@keyframes zoomOut {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Main Content */
.main-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 0;
}

.logo-container {
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.logo-container img {
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
    animation: fadeInUp 1s forwards; /* Keep the initial reveal but remove continuous floating */
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.coming-soon-content {
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--accent);
    color: white;
    font-size: 0.75rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border-radius: 50px;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.2s;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.4s;
}

p.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.6s;
}

.philosophy {
    margin-bottom: 3rem;
    font-style: italic;
    color: var(--accent);
    letter-spacing: 0.1rem;
    font-family: 'Playfair Display', serif;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.7s;
}

/* Newsletter Form */
.notify-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 4rem;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.8s;
}

.notify-form input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.notify-form input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
}

.notify-form button {
    padding: 1rem 2.5rem;
    background: var(--text-dark);
    color: #1a1412;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.notify-form button:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    opacity: 0;
    animation: fadeInUp 1s forwards 1s;
}
@media (max-width: 992px) {
    .features {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

.feature-item {
    padding: 2rem;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 45%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 55%,
        transparent 100%
    );
    transform: rotate(45deg);
    animation: shimmer 5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Contact Footer */
.footer-contact {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    width: 100%;
    opacity: 0;
    animation: fadeInUp 1s forwards 1.2s;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.contact-info a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--accent);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    color: #1a1412;
    border-color: var(--accent);
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .notify-form {
        flex-direction: column;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    .contact-info {
        gap: 1.5rem;
        flex-direction: column;
    }
    
    .container {
        padding: 0 1.5rem;
    }
}
