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

body {
    /* Deep dark purple radial gradient background */
    background: radial-gradient(circle at center, #160b24 0%, #08030d 100%);
    color: #ffffff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Prevents scrollbars from particles */
    text-align: center;
}

/* Position particles behind content */
#tsparticles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Ensure content stays above the particle background */
.content-wrapper {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

/* Typography & Glow Effects */
.gradient-glow {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    /* Gradient from pure white to soft purple to deep purple */
    background: linear-gradient(180deg, #ffffff 0%, #d4bbf9 50%, #9b6ee5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* We use drop-shadow instead of text-shadow for gradient text */
    filter: drop-shadow(0px 0px 15px rgba(155, 110, 229, 0.4));
}

.main-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.sub-title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 6px;
    color: #9a86b3;
    margin-bottom: 25px;
    font-weight: 300;
}

/* Fading Divider Line */
.fading-line {
    border: 0;
    height: 1px;
    /* Fades out at the edges, bright in the center */
    background: linear-gradient(to right, transparent, rgba(155, 110, 229, 0.3), transparent);
    width: 60%;
    margin: 0 auto 25px auto;
}

.tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.4rem;
    color: #bfa8db;
    letter-spacing: 1px;
}

.availability {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: #bfa8db;
    letter-spacing: 1px;
}

/* Contact Info */
.contact-info {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #a491bc;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 300;
    letter-spacing: 1px;
}

.contact-info a {
    color: #a491bc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
}

/* Spacing Utilities */
.spacing-large {
    height: 60px;
}
.spacing-medium {
    height: 40px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .main-title { font-size: 2.5rem; }
    .sub-title { font-size: 1.4rem; }
    .subtitle { font-size: 0.7rem; letter-spacing: 3px; }
    .fading-line { width: 80%; }
}