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

body {
    font-family: 'Crimson Text', serif;
    line-height: 1.7;
    color: #333;
    background: #ffffff;
    overflow-x: hidden;
    font-size: 1.1rem;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #666;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.typewriter-container {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    color: #333;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 2rem;
}

#static-text {
    display: inline;
}

#dynamic-text {
    display: inline;
}

.cursor {
    display: inline-block;
    animation: blink 1s infinite;
    color: #333;
    font-weight: 300;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}



/* About Section */
.about-section {
    padding: 6rem 0;
    background: #ffffff;
}

.disciplines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.discipline {
    font-family: 'Crimson Text', serif;
    font-size: 1.3rem;
    color: #666;
    text-align: center;
    padding: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.discipline a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.discipline a:hover {
    color: #333;
}

.discipline:nth-child(1) { animation-delay: 0.1s; }
.discipline:nth-child(2) { animation-delay: 0.2s; }
.discipline:nth-child(3) { animation-delay: 0.3s; }
.discipline:nth-child(4) { animation-delay: 0.4s; }
.discipline:nth-child(5) { animation-delay: 0.5s; }
.discipline:nth-child(6) { animation-delay: 0.6s; }
.discipline:nth-child(7) { animation-delay: 0.7s; }
.discipline:nth-child(8) { animation-delay: 0.8s; }
.discipline:nth-child(9) { animation-delay: 0.9s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Transformation Section */
.transformation-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.transformation-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.transformation-content {
    max-width: 800px;
    margin: 0 auto;
}

.transformation-content p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.transformation-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    text-align: center;
    color: #333;
    margin-top: 2rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 6rem 0;
    background: #ffffff;
}

.newsletter-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #333;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.newsletter-intro {
    font-size: 1.35rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
}

.newsletter-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.newsletter-description {
    padding-right: 2rem;
}

.newsletter-description p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.newsletter-description ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.newsletter-description li {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.newsletter-form {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group.half {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    color: #333;
    background: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #666;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.subscribe-btn {
    background: #333;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.subscribe-btn:hover {
    background: #555;
}

.privacy-notice {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.privacy-notice p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* About Page Styles */
.about-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-intro {
    font-size: 1.4rem;
    color: #666;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    padding: 2rem 0 6rem;
}

.about-section {
    margin-bottom: 4rem;
    padding: 3rem 0;
    border-bottom: 1px solid #eee;
    scroll-margin-top: 100px; /* Account for fixed navbar */
}

.about-section:last-child {
    border-bottom: none;
}

.about-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    text-align: center;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.about-text p {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.call-to-action {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #333;
    text-align: left;
}

.action-word {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
}

.action-question {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

.nav-logo a {
    color: #333;
    text-decoration: none;
}

.nav-menu .active {
    color: #666;
    font-weight: 600;
}

/* Form Message Styles */
.form-message {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.subscribe-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: #ffffff;
}

.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-content p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
}

.contact-info p {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
    
    .typewriter-container {
        font-size: 2.5rem;
        padding: 0 1rem;
    }
    
    .disciplines-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .transformation-section h2,
    .newsletter-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-description {
        padding-right: 0;
    }
    
    .newsletter-form {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-intro {
        font-size: 1.2rem;
    }
    
    .about-section h2 {
        font-size: 1.8rem;
    }
    
    .about-text p {
        font-size: 1.1rem;
    }
    
    .call-to-action {
        padding: 1rem;
    }
    
    .action-word {
        font-size: 1.2rem;
    }
    
    .action-question {
        font-size: 1.1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .typewriter-container {
        font-size: 2rem;
    }
    
    .disciplines-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background: rgba(51, 51, 51, 0.1);
}