/* CSS Variables and Global Styles */
:root {
    --gold-color: #daa520;
    --black-color: #1a1a1a;
    --dark-grey: #333333;
    --light-grey: #f9f9f9;
    --white: #ffffff;
    --font-headline: 'Anton', sans-serif;
    --font-body: 'Oswald', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--dark-grey);
    text-align: center;
    line-height: 1.6;
}

/* Layout Containers */
.site-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-header {
    padding: 20px 40px;
    width: 100%;
}

.site-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.site-footer {
    padding: 15px;
    background-color: var(--light-grey);
    font-size: 0.9rem;
    color: #777;
    width: 100%;
    margin-top: auto;
}

/* Logo */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

#logo-svg {
    width: 300px;
    height: auto;
    transition: transform 0.3s ease;
}

#logo-svg:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero-section {
    max-width: 950px;
    margin: 0 auto; 
}

.hero-section h1 {
    font-family: var(--font-headline);
    font-size: 3.5rem; 
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.1;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-color);
}

.hero-section p {
    font-family: var(--font-body);
    font-size: 1.4rem; 
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--black-color);
}

.meeting-info {
    font-size: 1rem !important; 
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--dark-grey);
}

/* CTA Button */
.cta-button {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--white);
    background-color: var(--black-color);
    padding: 15px 35px;
    border-radius: 50px;
    border: 2px solid var(--black-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    background-color: var(--gold-color);
    border-color: var(--gold-color);
    color: var(--black-color);
    box-shadow: 0 15px 40px rgba(218, 165, 32, 0.3);
}

/* Google Calendar Container */
.calendar-container {
    width: 100%;
    max-width: 950px;
    margin: 60px auto 20px auto; 
}

.calendar-title {
    font-family: var(--font-headline);
    font-size: 2.5rem; 
    color: var(--black-color);
    text-transform: uppercase;
    margin-bottom: 8px; 
    letter-spacing: 1px;
}

.calendar-subtitle {
    font-size: 1.1rem; 
    font-weight: 300;
    color: var(--dark-grey);
    margin-bottom: 25px; 
}

.calendar-container iframe {
    width: 100%;
    height: 600px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* Responsive Media Queries */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 3rem; 
    }
    .hero-section p {
        font-size: 1.3rem; 
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 20px;
    }
    #logo-svg {
        width: 250px;
    }
    .hero-section h1 {
        font-size: 2.2rem;
        letter-spacing: 0;
    }
    .hero-section p {
        font-size: 1.1rem;
    }
    .meeting-info {
        font-size: 1rem !important;
    }
    .calendar-container {
        margin-top: 50px; 
    }
    .calendar-title {
        font-size: 2rem; 
    }
    .calendar-subtitle {
        font-size: 1rem; 
    }
    .calendar-container iframe {
        height: 450px;
    }
}