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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Header */
.header {
    background-color: #000000;
    width: 100%;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo {
    max-height: 90px;
    width: auto;
    display: block;
}

/* Coming Soon Section */
.coming-soon {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    background-image: url('images/92ffb7c8-7cc3-454b-8547-53d8d7a42b78.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.85) 100%),
                radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.coming-soon .container {
    position: relative;
    z-index: 1;
}

.coming-soon-title {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 20px;
    color: #d4af37;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
}

.coming-soon-subtitle {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 15px;
    color: #f5f5f5;
    letter-spacing: 2px;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
}

.coming-soon-text {
    font-size: 18px;
    color: #d4af37;
    font-weight: 500;
    letter-spacing: 1px;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
}

/* About Section */
.about {
    padding: 80px 20px;
    background-color: #ffffff;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-intro {
    margin-bottom: 40px;
}

.lead-text {
    font-size: 20px;
    line-height: 1.8;
    color: #2c2c2c;
    font-weight: 400;
}

.about-section {
    margin-bottom: 50px;
}

.about-section h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
    border-left: 4px solid #d4af37;
    padding-left: 15px;
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 25px;
}

.expertise-card {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.expertise-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.expertise-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.philosophy-list,
.results-list {
    list-style: none;
    margin: 20px 0;
}

.philosophy-list li,
.results-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.philosophy-list li::before,
.results-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
    font-size: 18px;
}

.quote {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-left: 4px solid #d4af37;
    padding: 25px 30px;
    margin: 30px 0;
    font-style: italic;
    font-size: 18px;
    line-height: 1.7;
    color: #2c2c2c;
    border-radius: 4px;
}

.quote cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-size: 16px;
    color: #666;
    text-align: right;
}

.about-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
    text-align: center;
}

.tagline {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.location {
    font-size: 16px;
    color: #666;
    font-style: italic;
}

/* Register Section */
.register {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: #ffffff;
}

.register-card {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 60px 40px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.register .section-title {
    color: #d4af37;
    margin-bottom: 20px;
}

.register .section-title::after {
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.register-subtitle {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: 1px;
}

.register-text {
    font-size: 17px;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.exclusivity-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 12px 24px;
    border-radius: 30px;
    margin-bottom: 40px;
    font-size: 14px;
    font-weight: 600;
    color: #d4af37;
    letter-spacing: 1px;
}

.badge-icon {
    font-size: 18px;
}

.register-cta {
    margin-top: 40px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #000000;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #e5c158 0%, #d4af37 100%);
}

.cta-note {
    margin-top: 20px;
    font-size: 14px;
    color: #b0b0b0;
    font-style: italic;
}

/* Footer */
.footer {
    background-color: #000000;
    padding: 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    position: relative;
}

.instagram-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d4af37;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    justify-self: start;
}

.instagram-link:hover {
    color: #e5c158;
    transform: translateY(-2px);
}

.instagram-link svg {
    transition: transform 0.3s ease;
}

.instagram-link:hover svg {
    transform: scale(1.1);
}

.footer-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    grid-column: 2;
}

.footer-logo {
    max-height: 50px;
    width: auto;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-text {
    color: #888;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 48px;
        letter-spacing: 2px;
    }

    .coming-soon-subtitle {
        font-size: 22px;
    }

    .coming-soon-text {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .about-section h3 {
        font-size: 26px;
    }

    .lead-text {
        font-size: 18px;
    }

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

    .register-card {
        padding: 40px 25px;
    }

    .cta-button {
        padding: 16px 35px;
        font-size: 16px;
    }

    .header-logo {
        max-height: 75px;
    }
}

@media (max-width: 480px) {
    .coming-soon {
        padding: 80px 20px;
    }

    .coming-soon-title {
        font-size: 36px;
    }

    .coming-soon-subtitle {
        font-size: 18px;
    }

    .about {
        padding: 60px 20px;
    }

    .register {
        padding: 60px 20px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .instagram-link {
        justify-content: center;
    }
}

