/**
 * Roxanne Updated Theme Styling
 * Updated color scheme and styling based on refined brand guidelines
 */

:root {
    /* New Color Palette */
    --primary-color: #4A154B; /* Deep Aubergine */
    --secondary-color: #F5E6E8; /* Warm Sand */
    --accent-color: #DAA520; /* Burnished Gold */
    --success-color: #7C9082; /* Sage */
    --alert-color: #E88D67; /* Muted Coral */
    --text-color: #2C363F; /* Deep Slate */
    --white: #FFFFFF;
    
    /* Base font size - makes rem calculations easier (1rem = 10px) */
    font-size: 62.5%;
}

/* Apply new font to all elements */
html {
    /* Ensure proper viewport scaling */
    font-size: 62.5%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body, h1, h2, h3, h4, h5, h6, p, a, button, input, select, textarea {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Apply the new color scheme */

/* Navigation */
.navbar-default {
    background-color: var(--primary-color);
    border-color: transparent;
    padding: 10px 0;
}

.navbar-default .navbar-brand {
    color: var(--white);
    font-weight: bold;
    font-size: 22px;
}

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
    color: var(--white);
}

.navbar-default .navbar-nav > li > a {
    color: var(--white);
    font-weight: 500;
    padding: 15px 10px;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
    color: var(--accent-color);
}

/* CTA Buttons */
.cta-button {
    background-color: var(--accent-color);
    border: none;
    color: var(--text-color);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.btn.cta-button {
    background-color: var(--accent-color);
    color: var(--text-color);
}

.cta-button:hover,
.cta-button:focus {
    background-color: #C99418; /* Darker gold */
    color: var(--text-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Section Headings */
.section-heading {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.section-divider {
    background: var(--accent-color);
    height: 2px;
    width: 80px;
    margin: 20px auto 30px;
}

/* Feature Icons */
.feature-icon {
    color: var(--accent-color);
    font-size: 3.5em;
    margin-bottom: 20px;
}

.feature-box {
    padding: 20px;
    margin-bottom: 30px;
}

.feature-box h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-box p {
    color: var(--text-color);
    line-height: 1.6;
}

.icon-feature {
    color: var(--primary-color);
}

/* Social Buttons */
.intro-social-buttons .btn-default {
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color);
    color: var(--text-color);
    font-weight: 600;
}

.intro-social-buttons .btn-default:hover {
    background-color: #C99418; /* Darker gold */
    transform: translateY(-2px);
}

.social-link {
    color: var(--white);
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--accent-color);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px 0;
}

footer .copyright {
    color: var(--white);
    font-size: 14px;
    margin: 10px 0;
}

footer a {
    color: var(--accent-color);
}

footer a:hover {
    color: #C99418; /* Darker gold */
    text-decoration: none;
}

.footer-social-buttons {
    margin: 5px 0;
}

.footer-social-buttons li {
    margin: 0 5px;
}

.footer-social-buttons .social-link {
    color: var(--white);
    transition: color 0.3s ease;
}

.footer-social-buttons .social-link:hover {
    color: var(--accent-color);
}

/* Section Backgrounds */
.features-section {
    background-color: #f9f5f6; /* Light pink/sand color from screenshot */
    padding: 80px 0;
}

/* Base Text Color */
body {
    color: var(--text-color);
}

/* Header/Intro Section */
.intro-header {
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
    color: var(--white);
    background-color: var(--primary-color); /* Fallback solid color */
    background-image: linear-gradient(135deg, #4A154B 10%, #663366 50%, #9370DB 90%); /* Purple gradient matching screenshot */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.intro-header:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, rgba(74, 21, 75, 0.2), rgba(102, 51, 102, 0.2)); /* Very subtle overlay */
    z-index: 1;
}

.intro-message {
    position: relative;
    padding-top: 20%;
    padding-bottom: 20%;
    z-index: 2;
}

/* Responsive title styling with REMs */
.responsive-title {
    margin: 0;
    font-weight: 700;
    text-shadow: 2px 2px 3px rgba(0,0,0,0.6);
    /* More aggressive vw-based sizing with fallbacks */
    font-size: 5vw !important; /* Base size using viewport width */
    line-height: 1.2;
    width: 100%;
    max-width: 100%;
}

.title-line {
    display: block;
}

.intro-message > h3 {
    text-shadow: 2px 2px 3px rgba(0,0,0,0.6);
    font-weight: 400;
    font-size: clamp(1.6rem, 2vw + 0.5rem, 2.4rem);
    margin-top: 1.5rem;
}

.intro-divider {
    width: 400px;
    border-top: 1px solid var(--secondary-color);
    border-bottom: 1px solid rgba(0,0,0,0.2);
    margin: 25px auto;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--white);
}

/* Waitlist Section */
.waitlist-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.waitlist-heading {
    color: var(--white);
    margin-bottom: 20px;
}

/* Responsive Media Queries */
@media (min-width: 1200px) {
    .responsive-title {
        font-size: 5rem !important; /* Cap the size on large screens */
    }
}

@media (max-width: 768px) {
    .responsive-title {
        font-size: 7vw !important; /* Slightly larger percentage on medium screens */
    }
    
    .intro-divider {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .responsive-title {
        font-size: 8vw !important; /* Even larger percentage on small screens */
    }
    
    .intro-message {
        padding-top: 25%;
        padding-bottom: 25%;
    }
}

@media (max-width: 320px) {
    .responsive-title {
        font-size: 9vw !important; /* Maximum percentage on very small screens */
    }
} 