/* 
   SunshinePromo Theme 
   CSS Variables & Reset 
*/
:root {
    /* Color Palette - Sunshine Theme */
    --color-bg-dark: #FDFBF7;
    /* Fallback */
    --color-bg-light: #FFF5E6;
    --color-bg-gradient: linear-gradient(135deg, #FDFBF7 0%, #FFF5E6 100%);

    --color-accent-start: #FF512F;
    --color-accent-end: #F09819;
    --color-accent-gradient: linear-gradient(to right, #FF512F 0%, #F09819 100%);
    /* Vibrant Sun */
    --color-secondary-gradient: linear-gradient(to right, #FF9A9E, #FECFEF);
    /* Pink Sunset */

    --color-text-main: #1A1A2E;
    /* Deep Navy */
    --color-text-muted: #4a4a5e;
    --color-surface: rgba(255, 255, 255, 0.7);
    --color-surface-hover: rgba(255, 255, 255, 0.95);
    --color-border: rgba(26, 26, 46, 0.1);

    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1);
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--color-bg-dark);
    /* Fallback */
    background: var(--color-bg-gradient);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.text-gradient {
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--color-accent-gradient);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 81, 47, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 81, 47, 0.5);
}

.btn-secondary {
    background: #fff;
    color: var(--color-text-main);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: #fff;
    border-color: var(--color-accent-start);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    /* Light glass */
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    /* Pastel Gradient Definition */
    background: var(--color-accent-gradient);
    /* This clips the background to the text shape */
    -webkit-background-clip: text;
    background-clip: text;
    /* Makes the text transparent so the background shows through */
    color: transparent;

    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.amazing {
    /* Pastel Gradient Definition */
    background: var(--color-accent-gradient);
    /* This clips the background to the text shape */
    -webkit-background-clip: text;
    background-clip: text;
    /* Makes the text transparent so the background shows through */
    color: transparent;

    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 5.0rem;
    letter-spacing: -0.5px;
}

.logo .dot {
    color: var(--color-accent-start);
}

.main-nav ul {
    display: flex;
    gap: var(--spacing-md);
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted);
    position: relative;
}

.main-nav a:hover {
    color: var(--color-text-main);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent-start);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Mobile Nav Checkbox Hack */
.nav-toggle,
.nav-toggle-label {
    display: none;
}

/* Hero Section */
.hero-section {
    padding-top: calc(var(--header-height) + var(--spacing-xl));
    padding-bottom: var(--spacing-xl);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: #FDFBF7;
    /* Force light text on video */
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 12, 41, 0.4);
    /* Dark overlay for contrast */
    background: linear-gradient(135deg, rgba(78, 55, 30, 0.4) 0%, rgba(15, 12, 41, 0.6) 100%);
    z-index: -1;
    backdrop-filter: blur(2px);
}

.hero-content {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards 0.2s;
    position: relative;
    z-index: 1;
}

.eyebrow {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    color: #FF9A9E;
    /* Lighten for video contrast */
    margin-bottom: var(--spacing-sm);
    display: block;
    font-weight: 700;
    /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); */
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    letter-spacing: -1px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
}

.hero-actions {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
}

/* About Section */
.about-section {
    padding: var(--spacing-xl) 0;
    background: rgb(255, 255, 255);
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.about-text p {
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
}

.visual-card {
    background: var(--color-surface);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.visual-card:nth-child(2) {
    transform: translateY(20px);
}

.visual-card:nth-child(3) {
    grid-column: span 2;
    text-align: center;
}

.visual-card:hover {
    background: var(--color-surface-hover);
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.3);
}

.icon-box {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.visual-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

/* Merchandise Section */
.merchandise-section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xs);
}

.section-header p {
    color: var(--color-text-muted);
}

.merch-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.merch-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    flex-direction: row;
}

.merch-card:nth-child(even) {
    flex-direction: row-reverse;
}

.merch-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-image-wrapper {
    width: 50%;
    height: 500px;
    /* Taller for the horizontal layout */
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
}

.card-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.merch-card:hover .card-image-img {
    transform: scale(1.05);
}

.card-content {
    padding: var(--spacing-lg);
    width: 50%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.card-content p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Response adjustment for mobile - back to vertical stack */
@media (max-width: 768px) {
    .merch-card {
        flex-direction: column;
        text-align: center;
    }

    .merch-card:nth-child(even) {
        flex-direction: column;
    }

    .card-image-wrapper,
    .card-content {
        width: 100%;
    }

    .card-image-wrapper {
        height: 250px;
    }
}

/* Clients Section */
.clients-section {
    padding: var(--spacing-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-header {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
}

.logo-grid {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    opacity: 0.7;
}

.client-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: #1a163a;
    padding: 1rem 2rem;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
}

/* Footer */
.site-footer {
    padding: var(--spacing-lg) 0 var(--spacing-md);
    background: var(--color-bg-gradient);
    /* Keep footer dark for contrast */
    color: #FDFBF7;
}

.footer-grid {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-brand p {
    color: #1a163a;
    margin-top: var(--spacing-sm);
    max-width: 400px;
    /* Increased slightly */
    margin-left: auto;
    margin-right: auto;
}

.footer-contact h4,
.footer-links h4 {
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-md);
    color: #fff;
}

.footer-contact address {
    font-style: normal;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-accent-start);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: var(--spacing-md);
    text-align: center;
    font-size: 0.875rem;
    color: #666;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        width: 30px;
        height: 25px;
        position: relative;
        cursor: pointer;
        z-index: 1002;
    }

    .nav-toggle-label span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--color-secondary-gradient);
        position: absolute;
        transition: all 0.3s;
    }

    .nav-toggle-label span:nth-child(1) {
        top: 0;
    }

    .nav-toggle-label span:nth-child(2) {
        top: 11px;
    }

    .nav-toggle-label span:nth-child(3) {
        bottom: 0;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--color-bg-light);
        padding-top: var(--header-height);
        transition: 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-lg);
    }

    /* Checkbox Hack Logic */
    .nav-toggle:checked~.main-nav {
        right: 0;
    }

    .nav-toggle:checked~.nav-toggle-label span:nth-child(1) {
        transform: rotate(45deg);
        top: 11px;
    }

    .nav-toggle:checked~.nav-toggle-label span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle:checked~.nav-toggle-label span:nth-child(3) {
        transform: rotate(-45deg);
        bottom: 12px;
    }

    .grid-2-col {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3rem;
    }
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-lg) 0;
    text-align: center;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Subtle background accent for contact section */
.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 81, 47, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.contact-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.contact-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-main);
    line-height: 1.1;
}

.contact-section p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-lg);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    align-items: center;
}

.contact-link {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text-main);
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: var(--color-accent-start);
    transform: translateY(-2px);
    text-shadow: 0 4px 10px rgba(255, 81, 47, 0.2);
}

.address {
    font-size: 1rem !important;
    /* Override standard p size */
    opacity: 0.8;
}

/* Modify Footer Grid for Simplified Layout */
.footer-grid {
    display: flex;
    justify-content: center;
    text-align: center;
}