/*
Theme Name: GTC Landing
Theme URI: https://example.com/gtc-landing
Author: GTC
Author URI: https://example.com
Description: GTC Landing page theme
Version: 1.3
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gtc-landing
*/

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

.page-container {
    min-height: 100vh;
    background-color: #000;
}

.container-large {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-medium {
    max-width: 896px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.navbar {
    width: 100%;
    padding: 1rem;
    position: relative;
    z-index: 20;
}

.nav-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 200px;
    height: auto;
}

@media (min-width: 768px) {
    .navbar {
        padding: 1rem 2rem;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

.hero-image-wrapper {
    width: 110vw;
    position: relative;
    margin-left: -5vw;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 768px) {
    .hero-section {
        margin-bottom: 4rem;
    }
}

/* YouTube Section */
.youtube-section {
    padding: 3rem 1rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

.section-title-medium {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    text-align: center;
    margin-bottom: 2rem;
    color: #ca8a04;
    letter-spacing: 0.05em;
}

.video-container {
    aspect-ratio: 16 / 9;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 2px solid rgba(202, 138, 4, 0.3);
    box-shadow: 0 25px 50px -12px rgba(202, 138, 4, 0.2);
    background-color: #000;
    position: relative;
}

.video-container iframe,
.video-container video,
.video-poster,
.video-poster img {
    width: 100%;
    height: 100%;
}

.video-poster {
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
}

.video-poster img {
    display: block;
    object-fit: cover;
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4.5rem;
    height: 4.5rem;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.video-play::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 1.1rem solid #fff;
    border-top: 0.7rem solid transparent;
    border-bottom: 0.7rem solid transparent;
}

@media (min-width: 768px) {
    .youtube-section {
        padding: 4rem 1rem;
        margin-bottom: 4rem;
    }
    
    .section-title-medium {
        margin-bottom: 2.5rem;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 0 1rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

.section-title-large {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.75rem);
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(to right, #ca8a04, #eab308, #ca8a04);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.02em;
    line-height: 1.2;
    filter: drop-shadow(0 0 30px rgba(234, 179, 8, 0.3));
}

.benefits-box {
    background: linear-gradient(to bottom right, rgba(17, 24, 39, 0.8), rgba(0, 0, 0, 0.8));
    border: 2px solid rgba(202, 138, 4, 0.3);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(202, 138, 4, 0.1);
    backdrop-filter: blur(4px);
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: all 0.3s ease;
    break-inside: avoid;
}

.benefit-item:hover {
    transform: translateX(4px);
}

.bullet {
    color: #ca8a04;
    font-size: 1.875rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: -0.15rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(234, 179, 8, 0.5));
}

.benefit-item:hover .bullet {
    transform: scale(1.25) rotate(45deg);
}

.benefit-text {
    color: #d1d5db;
    line-height: 1.5;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 400;
    letter-spacing: 0.015em;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-text {
    color: #fff;
}

@media (min-width: 768px) {
    .benefits-section {
        margin-bottom: 4rem;
    }
    
    .section-title-large {
        margin-bottom: 4rem;
    }
    
    .benefits-box {
        padding: 4rem;
    }
    
    .benefits-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 2rem;
    }
    
    .benefit-item {
        gap: 1.25rem;
        margin-bottom: 0;
    }
}

@media (min-width: 1024px) {
    .youtube-section .container-medium {
        max-width: 1100px;
    }

    .benefits-box {
        padding: 5rem;
    }
    
    .benefits-list {
        gap: 3rem 4rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 0 1rem 4rem;
    position: relative;
    z-index: 10;
}

.polaroid-wrapper {
    width: 100%;
    margin-bottom: 3rem;
}

.polaroid-img {
    width: 100%;
    height: auto;
    display: block;
}

.meeting-plan-container {
    margin-bottom: 4rem;
}

.meeting-plan-box {
    background: linear-gradient(to bottom right, rgba(17, 24, 39, 0.8), rgba(0, 0, 0, 0.8));
    border: 2px solid rgba(202, 138, 4, 0.3);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(202, 138, 4, 0.1);
    backdrop-filter: blur(4px);
}

.meeting-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.meeting-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: all 0.3s ease;
}

.meeting-item:hover {
    transform: translateX(4px);
}

.meeting-bullet {
    color: #ca8a04;
    font-size: 1.875rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: -0.1rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(234, 179, 8, 0.5));
}

.meeting-item:hover .meeting-bullet {
    transform: scale(1.25);
}

.meeting-text {
    color: #d1d5db;
    line-height: 1.7;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 400;
    letter-spacing: 0.015em;
    transition: all 0.3s ease;
}

.meeting-item:hover .meeting-text {
    color: #fff;
}

.meeting-date {
    color: #eab308;
}

.cta-content {
    max-width: 896px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: clamp(1.875rem, 5vw, 3rem);
    text-align: center;
    background: linear-gradient(to right, #ca8a04, #eab308, #ca8a04);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.03em;
    line-height: 1.3;
}

.cta-button {
    background: linear-gradient(to right, #ca8a04, #eab308);
    color: #000;
    padding: 1rem 3rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(202, 138, 4, 0.2);
    display: inline-block;
}

.cta-button:hover {
    background: linear-gradient(to right, #eab308, #fde047);
    box-shadow: 0 10px 15px -3px rgba(202, 138, 4, 0.4);
    transform: scale(1.05);
}

.cta-contact {
    margin-top: -0.25rem;
    display: block;
    width: min(100%, 38ch);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: #d1d5db;
    line-height: 1.65;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    word-break: break-word;
    text-wrap: balance;
}

.cta-content .cta-contact-link,
.cta-content .cta-contact-link:link,
.cta-content .cta-contact-link:visited {
    color: #eab308;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    text-align: center;
    overflow-wrap: anywhere;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

.cta-content .cta-contact-link:hover,
.cta-content .cta-contact-link:focus,
.cta-content .cta-contact-link:focus-visible,
.cta-content .cta-contact-link:active {
    color: #fde047;
    text-shadow: 0 0 12px rgba(253, 224, 71, 0.35);
}

@media (min-width: 768px) {
    .cta-section {
        padding: 0 1rem 6rem;
    }
    
    .polaroid-wrapper {
        margin-bottom: 4rem;
    }
    
    .meeting-plan-container {
        margin-bottom: 6rem;
    }
    
    .meeting-plan-box {
        padding: 4rem;
    }
    
    .meeting-list {
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .meeting-plan-box {
        padding: 5rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, #000, #111827);
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer-logo-img {
    width: 128px;
    height: auto;
    opacity: 0.9;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-link {
    color: #ca8a04;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: #fbbf24;
    transform: scale(1.1);
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
    margin-bottom: 1.5rem;
}

.legal-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #ca8a04;
}

.separator {
    color: #4b5563;
}

.copyright {
    text-align: center;
    color: #6b7280;
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .footer-content {
        padding: 4rem 1rem;
    }
    
    .footer-logo-img {
        width: 192px;
    }
    
    .legal-link {
        font-size: 1rem;
    }
    
    .copyright {
        font-size: 0.875rem;
    }
}

/* Legal Pages */
.legal-page .navbar {
    margin-bottom: 2rem;
}

.legal-section {
    padding: 2rem 1rem 4rem;
    position: relative;
    z-index: 10;
}

.legal-content {
    background: linear-gradient(to bottom right, rgba(17, 24, 39, 0.78), rgba(0, 0, 0, 0.85));
    border: 2px solid rgba(202, 138, 4, 0.25);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(202, 138, 4, 0.15);
}

.legal-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #ca8a04, #eab308, #ca8a04);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.02em;
}

.legal-meta {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.legal-section h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: clamp(1.25rem, 3.5vw, 1.75rem);
    margin: 2rem 0 0.75rem;
    color: #fbbf24;
}

.legal-section p {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
}

.legal-list {
    list-style: none;
    margin: 0.75rem 0 1.25rem;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.legal-list li {
    position: relative;
    padding-left: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.legal-list li::before {
    content: "◆";
    position: absolute;
    left: 0;
    top: 0;
    color: #fbbf24;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .legal-section {
        padding: 3rem 1rem 5rem;
    }

    .legal-content {
        padding: 3rem;
    }
}

/* Animation Classes */
.fade-in,
.fade-in-up {
    opacity: 0;
}

.fade-in-up {
    transform: translateY(32px);
}

/* Intersection Observer Animation States */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
    will-change: opacity, transform;
}

.fade-in.animate-on-scroll {
    transform: none;
}

.fade-in-up.animate-on-scroll {
    transform: translateY(32px);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.desktop-only {
    display: none;
}

@media (min-width: 768px) {
    .desktop-only {
        display: block;
    }
    .mobile-only {
        display: none;
    }
}
