/* SaTA Static Site Styles */

/* CSS Variables */
:root {
    --color-navy: #1B2E5E;
    --color-gold: #C9A84C;
    --color-teal: #1A7A7A;
    --color-parchment: #FDF6E3;
    --color-charcoal: #444444;
    --font-display: 'Playfair Display', serif;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'DM Sans', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-charcoal);
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.site-logo img {
    height: 50px;
}

/* Navigation */
.primary-navigation {
    display: flex;
}

.menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.menu-item {
    position: relative;
}

.menu-item a {
    color: var(--color-navy);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}

.menu-item-has-children > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-arrow {
    font-size: 10px;
}

.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    list-style: none;
    min-width: 200px;
    padding: 10px 0;
}

.menu-item:hover .sub-menu {
    display: block;
}

.sub-menu a {
    display: block;
    padding: 8px 20px;
    font-size: 14px;
}

.sub-menu a:hover {
    background: var(--color-parchment);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/background-home.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 46, 94, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 100px 20px;
}

.hero-eyebrow {
    color: var(--color-gold);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-navy);
}

.btn-outline {
    border: 2px solid white;
    color: white;
}

.btn:hover {
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    opacity: 0.8;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

/* Countdown Section */
.countdown-section {
    background: var(--color-parchment);
    padding: 60px 0;
    text-align: center;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1;
}

.countdown-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-charcoal);
    margin-top: 5px;
}

.countdown-cta {
    font-size: 16px;
}

.countdown-cta a {
    color: var(--color-teal);
    text-decoration: none;
    font-weight: 600;
}

/* Pillars Section */
.pillars-section {
    padding: 100px 0;
    background: white;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pillar-card {
    text-align: center;
    padding: 40px 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.pillar-rule {
    width: 40px;
    height: 3px;
    background: var(--color-gold);
    margin: 0 auto 20px;
}

.pillar-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.pillar-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-navy);
    margin-bottom: 15px;
}

/* Tracks Section */
.tracks-section {
    padding: 100px 0;
    background: var(--color-navy);
    color: white;
}

.tracks-section .section-title {
    color: white;
    text-align: center;
}

.tracks-section .section-subtitle {
    color: rgba(255,255,255,0.8);
    text-align: center;
    margin-bottom: 60px;
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.track-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.track-card:hover {
    background: rgba(255,255,255,0.15);
}

.track-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--color-gold);
    color: var(--color-navy);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.track-card h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 10px;
}

.track-card p {
    font-size: 14px;
    opacity: 0.8;
}

/* Section Titles */
.section-title {
    font-family: var(--font-display);
    font-size: 40px;
    color: var(--color-navy);
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--color-charcoal);
    text-align: center;
    margin-bottom: 40px;
}

/* Speakers Section */
.speakers-section {
    padding: 100px 0;
    background: var(--color-parchment);
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.speaker-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.speaker-image {
    width: 100px;
    height: 100px;
    background: var(--color-parchment);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.speaker-card h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-navy);
    margin-bottom: 5px;
}

.speaker-card p {
    color: var(--color-charcoal);
    margin-bottom: 10px;
}

.session-tag {
    display: inline-block;
    background: var(--color-teal);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-cta {
    text-align: center;
}

.btn-outline-dark {
    border: 2px solid var(--color-navy);
    color: var(--color-navy);
}

/* Tickets Section */
.tickets-section {
    padding: 100px 0;
    background: white;
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.ticket-card {
    border: 2px solid #eee;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.ticket-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ticket-card.featured {
    border-color: var(--color-gold);
    background: var(--color-parchment);
}

.ticket-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-navy);
    margin-bottom: 10px;
}

.ticket-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-teal);
    margin-bottom: 20px;
}

.ticket-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.ticket-card li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.ticket-card li:last-child {
    border-bottom: none;
}

.tickets-note {
    text-align: center;
    color: var(--color-charcoal);
}

/* Newsletter Section */
.newsletter-section {
    padding: 100px 0;
    background: var(--color-navy);
    color: white;
    text-align: center;
}

.newsletter-section h2 {
    font-family: var(--font-display);
    font-size: 36px;
    margin-bottom: 15px;
}

.newsletter-section p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto 20px;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 15px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    flex: 1;
    min-width: 200px;
}

.gdpr-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.8;
}

.gdpr-checkbox input {
    width: auto;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget li {
    margin-bottom: 10px;
}

.footer-widget a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-widget a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .pillars-grid,
    .tickets-grid {
        grid-template-columns: 1fr;
    }
    
    .tracks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .primary-navigation {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .countdown-timer {
        gap: 20px;
    }
    
    .countdown-number {
        font-size: 42px;
    }
    
    .tracks-grid {
        grid-template-columns: 1fr;
    }
    
    .speakers-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
