/* Custom styles for a dark, retro/blue feel */
body {
    font-family: 'Inter', sans-serif;
    background-color: #0c1524; /* Very dark blue */
    color: #e5e7eb;
}
/* Custom gradient for hero text and accents (Blue to Cyan) */
.text-gradient {
    background-image: linear-gradient(45deg, #3b82f6, #06b6d4); /* Blue-500 to Cyan-500 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.hero-bg {
    /* Updated placeholder image text for The 9 Teas */
    background: url('https://placehold.co/1200x800/1f2937/ffffff?text=The+9+Teas+90s+Vibe') no-repeat center center;
    background-size: cover;
    position: relative;
}
.section-separator {
    height: 1px;
    /* Updated separator to use blue accent */
    background: linear-gradient(to right, #1f2937, #3b82f6, #1f2937);
    margin: 4rem 0;
}

.iframe-container {
    /* 1. Center the container block */
    margin-left: auto;
    margin-right: auto;
    
    /* 2. Set the desired width */
    width: 80%;
    
    /* 3. Aspect Ratio Magic */
    position: relative;
    padding-top: 56.25%; /* (9 / 16) * 100 = 56.25% */
    height: 0; /* Ensures container doesn't have intrinsic height */
    overflow: hidden;
}

.iframe-container iframe {
    /* 4. Make the iframe fill its responsive container */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none; /* Optional: removes default border */
}