/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --matte-black: #0a0a0a;
    --deep-black: #000000;
    --silver: #c0c0c0;
    --bright-silver: #e8e8e8;
    --dark-silver: #808080;
    --accent-silver: #b8b8b8;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--matte-black);
    color: var(--silver);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Overlay Effect */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top, rgba(192, 192, 192, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(192, 192, 192, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Main Container */
.container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.container.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
header {
    text-align: center;
    padding: 2rem 0 3rem;
    border-bottom: 1px solid rgba(192, 192, 192, 0.15);
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.3em;
    background: linear-gradient(135deg, var(--bright-silver) 0%, var(--silver) 50%, var(--dark-silver) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(192, 192, 192, 0.3);
}

.tagline {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--accent-silver);
    letter-spacing: 0.2em;
    font-weight: 300;
    text-transform: uppercase;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
}

/* Hero Image */
.hero-image {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 3rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(192, 192, 192, 0.1);
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.3) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

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

/* Content Section */
.content {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.main-heading {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--bright-silver);
    letter-spacing: 0.1em;
}

.description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    color: var(--accent-silver);
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
}

.feature {
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.03) 0%, rgba(192, 192, 192, 0.01) 100%);
    border: 1px solid rgba(192, 192, 192, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: rgba(192, 192, 192, 0.3);
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.05) 0%, rgba(192, 192, 192, 0.02) 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: grayscale(100%) brightness(1.2);
}

.feature h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--bright-silver);
    letter-spacing: 0.05em;
}

.feature p {
    color: var(--dark-silver);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Notify Section */
.notify-section {
    margin-top: 3rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.05) 0%, rgba(192, 192, 192, 0.02) 100%);
    border: 1px solid rgba(192, 192, 192, 0.15);
    border-radius: 12px;
}

.notify-section h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--bright-silver);
    letter-spacing: 0.05em;
}

.notify-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 6px;
    color: var(--bright-silver);
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: var(--dark-silver);
}

.email-input:focus {
    outline: none;
    border-color: var(--silver);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(192, 192, 192, 0.1);
}

.notify-button {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--dark-silver) 0%, var(--silver) 100%);
    border: none;
    border-radius: 6px;
    color: var(--deep-black);
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.2);
}

.notify-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 192, 192, 0.3);
    background: linear-gradient(135deg, var(--silver) 0%, var(--bright-silver) 100%);
}

.notify-button:active {
    transform: translateY(0);
}

.privacy-text {
    font-size: 0.85rem;
    color: var(--dark-silver);
    font-style: italic;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(192, 192, 192, 0.15);
    margin-top: 3rem;
    color: var(--dark-silver);
    font-size: 0.9rem;
}

.location {
    margin-top: 0.5rem;
    color: var(--accent-silver);
    letter-spacing: 0.1em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    header {
        padding: 1.5rem 0 2rem;
    }
    
    .logo {
        letter-spacing: 0.2em;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .notify-form {
        flex-direction: column;
        width: 100%;
    }
    
    .email-input,
    .notify-button {
        width: 100%;
        min-width: auto;
    }
    
    .notify-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .tagline {
        letter-spacing: 0.15em;
    }
    
    .feature {
        padding: 1.5rem 1rem;
    }
}

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

.loaded .hero-image,
.loaded .content > * {
    animation: fadeInUp 0.8s ease forwards;
}

.loaded .hero-image {
    animation-delay: 0.2s;
}

.loaded .main-heading {
    animation-delay: 0.4s;
}

.loaded .description {
    animation-delay: 0.5s;
}

.loaded .features {
    animation-delay: 0.6s;
}

.loaded .notify-section {
    animation-delay: 0.7s;
}
