/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #DAA520;
    --dark-gold: #B8941A;
    --light-gold: #F4E19C;
    --dark-bg: #1a1a1a;
    --darker-bg: #111111;
    --text-light: #f5f5f5;
    --text-gold: #DAA520;
    --accent-gradient: linear-gradient(135deg, #DAA520, #F4E19C);
    --dark-overlay: rgba(0, 0, 0, 0.7);
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--dark-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
}

.event-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.event-info li {
    padding-left: 1.5rem;
    font-size: 0.9rem;
    position: relative;
}

.event-info p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.event-info strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Header and Navigation */
header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(218, 165, 32, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--gold);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, 
        var(--dark-overlay), 
        var(--dark-overlay)), 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect fill="%23111111" width="1920" height="1080"/><polygon fill="%23333333" points="0,0 800,400 1200,200 1920,600 1920,0"/><polygon fill="%23222222" points="0,1080 600,800 1000,1000 1920,700 1920,1080"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.8), 
        rgba(17, 17, 17, 0.9));
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 600;
    color: var(--light-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-featuring {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.featuring-text {
    display: block;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.speaker-name {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.event-details-s {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.9s both;
}

.event-location {
    font-size: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.event-date-s {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.date-month,
.date-day,
.date-year {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
}

.date-month,
.date-year {
    font-size: 1.5rem;
}

.date-day {
    font-size: 3rem;
    padding: 0 1rem;
    border-left: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
}

.hosted-by {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 1.2s both;
}

.hosted-text {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.lp-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.torch-icon {
    width: 60px;
    height: 60px;
    background-image: url('https://assets.nationbuilder.com/lptexas/sites/1/favicon_images/original/LPTexas_Circular_Logo.png?1687227123');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    position: relative;
    margin-bottom: 0.5rem;
}

.lp-text {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.lp-subtext {
    font-size: 1rem;
    color: var(--light-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button {
    background: var(--accent-gradient);
    color: var(--dark-bg);
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.3);
    animation: fadeInUp 1s ease 1.5s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(218, 165, 32, 0.5);
}

/* Sections */
.section {
    padding: 100px 0;
}

.section:nth-child(even) {
    background: var(--darker-bg);
}

.section-title {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Event Info Section */
.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.event-card {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), rgba(244, 225, 156, 0.05));
    border: 1px solid rgba(218, 165, 32, 0.2);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(218, 165, 32, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.event-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Speaker Section */
.speaker-section {
    background: var(--darker-bg);
}

.speaker-profile {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.speaker-image {
    text-align: center;
}

.placeholder-image {
    width: 300px;
    height: 300px;
    background: var(--accent-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-bg);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 auto;
}

.speaker-info h3 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.speaker-title {
    font-size: 1.2rem;
    color: var(--light-gold);
    font-style: italic;
    margin-bottom: 2rem;
}

.speaker-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.speaker-highlights ul {
    list-style: none;
}

.speaker-highlights li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.speaker-highlights li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* Registration Section */
.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.registration-info h3 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ticket-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.ticket-option {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), rgba(244, 225, 156, 0.05));
    border: 1px solid rgba(218, 165, 32, 0.2);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.ticket-option.featured {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.2);
}

.ticket-option h4 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ticket-option ul {
    list-style: none;
}

.ticket-option li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
    color: var(--text-light);
}

.ticket-option li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* Registration Form */
.registration-form {
    background: var(--darker-bg);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(218, 165, 32, 0.2);
}

.registration-form h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--light-gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 8px;
    background: rgba(26, 26, 26, 0.8);
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(218, 165, 32, 0.3);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--text-light);
    text-transform: none;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.register-button {
    width: 100%;
    background: var(--accent-gradient);
    color: var(--dark-bg);
    border: none;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.register-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.4);
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--light-gold);
    margin-top: 1rem;
    font-style: italic;
}

/* Footer */
footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(218, 165, 32, 0.2);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.lp-logo-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.lp-logo-footer .torch-icon {
    width: 40px;
    height: 40px;
    background-image: url('https://assets.nationbuilder.com/lptexas/sites/1/favicon_images/original/LPTexas_Circular_Logo.png?1687227123');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    margin-bottom: 0;
}

.lp-logo-footer .lp-text {
    font-size: 1.3rem;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(218, 165, 32, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: var(--light-gold);
}

.disclaimer {
    background: rgba(17, 17, 17, 0.8);
    border-top: 1px solid rgba(218, 165, 32, 0.1);
    padding: 2rem 0;
}

.disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-light);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer strong {
    color: var(--gold);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .speaker-profile,
    .registration-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.8rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .event-date {
        flex-direction: column;
        gap: 1rem;
    }
    
    .date-day {
        border: 2px solid var(--gold);
        border-radius: 50%;
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .placeholder-image {
        width: 200px;
        height: 200px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .hero {
        margin-top: 120px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .ticket-options {
        gap: 1rem;
    }
    
    .ticket-option {
        padding: 1.5rem;
    }
}
