/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    /* Deep dark background */
    color: #f5f5f5;
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Typography */
h1,
h2,
h3 {
    font-family: 'Cinzel', serif;
    /* Elegant serif font for headings */
    font-weight: 400;
}

/* Header & Logo */
.site-header {
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.logo-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.logo {
    font-size: 2.5rem;
    letter-spacing: 2px;
    color: #e0e0e0;
    margin: 0;
}

.logo .accent {
    color: #b39ddb;
    /* Light purple/lilac */
}

.logo-icon {
    color: #b39ddb;
    width: 24px;
    height: 24px;
    animation: float 3s ease-in-out infinite;
}

/* Hero Section */
.hero {
    padding: 4rem 1.5rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Subscribe Form */
.subscribe-area {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.subscribe-text {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #aaa;
}

.subscribe-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

input[type="email"] {
    padding: 12px 16px;
    border-radius: 4px;
    border: 1px solid #333;
    background: #1a1a1a;
    color: #fff;
    font-family: inherit;
    width: 300px;
    max-width: 100%;
    outline: none;
    transition: border-color 0.3s;
}

input[type="email"]:focus {
    border-color: #b39ddb;
}

button {
    padding: 12px 24px;
    border-radius: 4px;
    border: none;
    background: #b39ddb;
    color: #121212;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.2s, background-color 0.2s;
}

button:hover {
    background: #d1c4e9;
    transform: translateY(-2px);
}

.form-message {
    margin-top: 1rem;
    font-size: 0.9rem;
    height: 1.5em;
    /* Reserve space */
    color: #b39ddb;
}

/* Sections */
.about,
.collections {
    padding: 3rem 1.5rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.container {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 3rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.about p,
.collections p {
    color: #aaa;
    margin-bottom: 2rem;
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    font-size: 0.95rem;
}

.feature-icon {
    font-size: 1.2rem;
}

/* Tags */
.tags {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tag {
    padding: 6px 16px;
    border: 1px solid rgba(179, 157, 219, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: #b39ddb;
    background: rgba(179, 157, 219, 0.05);
}

/* Footer */
.site-footer {
    margin-top: auto;
    padding: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.site-footer a {
    color: #888;
    transition: color 0.3s;
}

.site-footer a:hover {
    color: #b39ddb;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Background Effect (Subtle Gradient) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(81, 45, 168, 0.15), transparent 60%);
    z-index: -1;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 600px) {
    .logo {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .subscribe-form {
        flex-direction: column;
    }

    input[type="email"] {
        width: 100%;
    }

    button {
        width: 100%;
    }
}