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

:root {
    --primary-color: #ff6b9d;
    --secondary-color: #c44569;
    --dark-bg: #1a1a2e;
    --light-text: #f8f8f8;
    --accent-gold: #ffd700;
    --soft-pink: #ffe5ec;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b3d 50%, #1a1a2e 100%);
    color: var(--light-text);
    line-height: 1.6;
    min-height: 100vh;
}

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

header {
    text-align: center;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 107, 157, 0.3);
    margin-bottom: 3rem;
}

header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--primary-color);
}

.subtle-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.subtle-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(255, 107, 157, 0.5);
}

.hero {
    display: grid;
    gap: 3rem;
}

.hero-content {
    text-align: center;
}

.title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.intro {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: var(--soft-pink);
}

.main-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.main-content p {
    margin-bottom: 1.5rem;
}

.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.feature-item {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    background: rgba(196, 69, 105, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(196, 69, 105, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

.cta {
    font-size: 1.4rem;
    margin: 3rem 0 2rem;
    font-style: italic;
    color: var(--soft-pink);
}

.button-container {
    margin: 3rem 0;
}

.main-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
    letter-spacing: 1px;
}

.main-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.6);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 4rem 0;
}

.image-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 3/4;
    transition: all 0.3s ease;
    cursor: pointer;
}

.image-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.5);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.3), rgba(196, 69, 105, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--soft-pink);
    border: 2px dashed rgba(255, 107, 157, 0.5);
}

/* When you add real images, replace .image-placeholder with img styling: */
.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.image-item:hover img {
    transform: scale(1.1);
}

footer {
    text-align: center;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 107, 157, 0.3);
    font-size: 0.9rem;
    color: rgba(248, 248, 248, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    header h1 {
        font-size: 2rem;
    }

    .title {
        font-size: 2.5rem;
    }

    .intro {
        font-size: 1.1rem;
    }

    .main-content {
        font-size: 1rem;
    }

    .features {
        flex-direction: column;
        gap: 1rem;
    }

    .feature-item {
        font-size: 1rem;
    }

    .cta {
        font-size: 1.2rem;
    }

    .main-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

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

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5rem;
    }

    .title {
        font-size: 2rem;
    }

    .image-grid {
        grid-template-columns: 1fr;
    }
}
