:root {
    --lily: #E8E9F3;
    --fiord: #455C7B;
    --burlywood: #DEB887;
    --black: #000000;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, var(--lily), var(--fiord));
}

body {
    font-family: 'Cormorant Garamond', serif;
    color: var(--white);
    background: var(--black);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

/* Center header elements */
header {
    text-align: center;
    width: 100%;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--white);
    text-align: center;
    position: relative;
    padding: 20px;
}

h1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/og-image.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
    filter: brightness(0.3);
}

.brand-logo {
    max-width: 100%;
    height: auto;
    max-height: 150px;
    display: block;
    margin: 0 auto 20px auto;
}

.tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 35px;
    text-align: center;
}

/* Video container with coming soon overlay */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    margin: 40px 0;
    overflow: hidden;
    border: 1px solid rgba(222, 184, 135, 0.3);
    background-color: rgba(0, 0, 0, 0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-coming-soon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.coming-soon-text {
    text-align: center;
    padding: 20px;
    border: 1px solid rgba(222, 184, 135, 0.3);
    background-color: rgba(0, 0, 0, 0.6);
    max-width: 70%;
}

.coming-soon-text h3 {
    margin: 0 0 10px 0;
    font-size: 1.8rem;
    color: var(--burlywood);
}

.coming-soon-text p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--lily);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Notification button styles */
.notify-btn {
    background: transparent;
    color: var(--lily);
    border: 1px solid var(--burlywood);
    padding: 10px 20px;
    margin-top: 0px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notify-btn:hover {
    background: var(--burlywood);
    color: var(--black);
    transform: translateY(-2px);
}

.signup {
    margin: 40px 0;
    background-color: rgba(69, 92, 123, 0.15);
    padding: 35px;
    border: 1px solid rgba(222, 184, 135, 0.3);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.signup::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: var(--lily);
}

.signup h2 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--burlywood);
    font-size: 1.6rem;
    text-align: center;
}

.signup-subtitle {
    color: var(--lily);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 25px;
    line-height: 1.5;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    text-align: center;
}

.signup form {
    display: flex;
    margin: 20px auto;
    flex-direction: column;
    max-width: 450px;
}

.signup input {
    flex: 1;
    padding: 15px;
    border: none;
    background: rgba(255, 255, 255, 0.07);
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(222, 184, 135, 0.3);
    transition: all 0.3s ease;
}

.signup input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid var(--burlywood);
}

.signup button {
    padding: 15px 25px;
    background: var(--burlywood);
    border: none;
    color: var(--black);
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.signup button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.signup button:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.signup button:hover::before {
    left: 100%;
}

.signup .success-message {
    color: var(--burlywood);
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid var(--burlywood);
    background-color: rgba(222, 184, 135, 0.1);
    font-size: 0.9rem;
}

.signup .error-message {
    color: #ff6b6b;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid #ff6b6b;
    background-color: rgba(255, 107, 107, 0.1);
    font-size: 0.9rem;
}

#form-message {
    margin-top: 15px;
    text-align: center;
}

.coming-soon {
    margin: 40px 0;
    padding: 30px;
    border: 1px solid rgba(222, 184, 135, 0.3);
    text-align: center;
}

.coming-soon .notify-btn {
    margin-top: 5px;
}

/* Header social links */
.header-social {
    margin-top: 20px;
    margin-bottom: 30px;
    gap: 25px;
    display: flex;
    justify-content: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
}

/* Center footer elements */
footer {
    text-align: center;
    width: 100%;
    padding: 20px 0 30px;
    margin-top: 20px;
}

.footer-social {
    margin-top: 20px;
    justify-content: center;
    display: flex;
}

.header-social .social-icon {
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(69, 92, 123, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.header-social .social-icon:hover {
    background-color: var(--burlywood);
    color: var(--black);
    transform: translateY(-3px);
}

/* Updated Spotify coming soon styles */
.social-icon.spotify-coming {
    position: relative;
    opacity: 0.4;
    cursor: default;
    background-color: rgba(69, 92, 123, 0.1);
}

.social-icon.spotify-coming:hover {
    background-color: rgba(69, 92, 123, 0.2);
    color: var(--lily);
    transform: none;
}

/* General social icon styles */
.social-icon {
    color: var(--lily);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

/* Footer social links */
.footer-social {
    gap: 30px;
}

.footer-social .social-icon {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0.8;
    padding: 5px 0;
    position: relative;
}

.footer-social .social-icon::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--burlywood);
    transition: all 0.3s ease;
}

.footer-social .social-icon:hover {
    color: var(--burlywood);
    opacity: 1;
}

.footer-social .social-icon:hover::after {
    width: 100%;
}

.legal-links {
    margin-top: 20px;
    text-align: center;
}

.legal-links a {
    color: var(--lily);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    color: var(--burlywood);
    opacity: 1;
}

.geometric-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-image: url('../assets/flower_of_life.svg');
    background-size: 400px 400px;
    background-repeat: repeat;
    opacity: 0.08;
    z-index: 1;
  }  

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    .header-social .social-icon {
        font-size: 1rem;
        width: 35px;
        height: 35px;
    }
    
    .header-social {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .coming-soon-text h3 {
        font-size: 1.4rem;
    }
    
    .coming-soon-text p {
        font-size: 0.8rem;
    }
    
    .signup-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .footer-social {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        justify-content: center;
    }
    
    .signup input, .signup button {
        font-size: 0.9rem;
        padding: 12px;
    }
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 40px;
}

.nav-logo {
    font-family: 'Cormorant Garamond', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    display: flex;
    text-align: left;
    align-items: center;
    gap: 10px;
}

.nav-logo-img {
    height: 25px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--lily);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--burlywood);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--burlywood);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--burlywood);
}

/* Support Page Styles */
.support-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 25px 50px;
    position: relative;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.brand-painting {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/og-image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.55;
    z-index: 1;
    pointer-events: none;
    border-radius: 8px;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.support-message {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 2px;
    padding: 20px 0;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.support-message p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--lily);
    margin-bottom: 20px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.9);
}

.support-button-container {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.support-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--burlywood);
    color: var(--black);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(222, 184, 135, 0.4);
    border-radius: 4px;
    position: relative;
    text-shadow: none;
}

.support-button:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(222, 184, 135, 0.5);
}

.support-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(222, 184, 135, 0.3);
}

@media (max-width: 768px) {
    .support-content {
        padding: 30px 15px;
        margin: 0 15px;
    }
    
    .support-message {
        padding: 15px;
    }
    
    .support-message p {
        font-size: 1.1rem;
    }
    
    .support-button {
        padding: 12px 25px;
        font-size: 0.8rem;
    }
}

/* Terms of Service Page Styles */
.tos-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    position: relative;
    z-index: 2;
}

.tos-content h2 {
    color: var(--burlywood);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 10px;
}

.last-updated {
    text-align: center;
    color: var(--lily);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    margin-bottom: 30px;
}

.welcome-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--lily);
    margin-bottom: 40px;
    text-align: center;
}

.tos-section {
    margin-bottom: 40px;
}

.tos-section h3 {
    color: var(--burlywood);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.tos-section p {
    color: var(--lily);
    line-height: 1.6;
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
}

.tos-section ul {
    list-style-type: none;
    padding-left: 20px;
    margin-bottom: 20px;
}

.tos-section ul li {
    color: var(--lily);
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.tos-section ul li::before {
    content: "•";
    color: var(--burlywood);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.contact-email {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--burlywood);
    margin-top: 10px;
}

.tos-footer {
    margin-top: 50px;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(222, 184, 135, 0.3);
}

.tos-footer p {
    color: var(--lily);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .tos-content {
        padding: 30px 15px;
    }
    
    .tos-content h2 {
        font-size: 1.8rem;
    }
    
    .tos-section h3 {
        font-size: 1.2rem;
    }
    
    .tos-section p,
    .tos-section ul li {
        font-size: 0.95rem;
    }
    
    .contact-email {
        font-size: 1rem;
    }
}
