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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #F5F0E6;
    background-color: #4B371C;
    overflow-x: hidden;
}

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

/* Header */
.top {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(75, 55, 28, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 2rem;
    padding-right: 2rem;
}

.brand {
    display: flex;
    align-items: center;
}

.brand svg {
    transition: transform 0.3s ease;
}

.brand svg:hover {
    transform: scale(1.1);
}

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

.nav a {
    color: #F5F0E6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: #E6B17A;
}

.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #E6B17A;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #4B371C 0%, #6B4F2A 100%);
    padding: 0 2rem;
    padding-top: 100px;
    gap: 40px;
}

.kicker {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #E6B17A;
    margin-bottom: 1rem;
    font-weight: 600;
}

.title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #F5F0E6;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.dynamic {
    font-size: 1.5rem;
    color: #E6B17A;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-style: italic;
}

.lede {
    font-size: 1.2rem;
    color: #F5F0E6;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    max-width: 600px;
}

.lede:last-of-type {
    margin-bottom: 2rem;
}

.social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social a {
    color: #E6B17A;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid rgba(230, 177, 122, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.social a:hover {
    background: #E6B17A;
    color: #4B371C;
    transform: translateY(-2px);
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section:nth-child(even) {
    background: linear-gradient(135deg, #5A4220 0%, #4B371C 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #E6B17A;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #E6B17A, #D4A574);
    border-radius: 2px;
}

/* Writings Section */
.writings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.writing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(230, 177, 122, 0.2);
    backdrop-filter: blur(10px);
}

.writing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(230, 177, 122, 0.5);
}

.writing-card h3 {
    color: #E6B17A;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.writing-card p {
    color: #F5F0E6;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.writing-card .date {
    color: #D4A574;
    font-size: 0.9rem;
    font-style: italic;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.gallery-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-placeholder {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #E6B17A, #D4A574);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #4B371C;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-item p {
    color: #F5F0E6;
    font-weight: 500;
}

/* Entertainment Section */
.entertainment-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.entertainment-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(230, 177, 122, 0.2);
    backdrop-filter: blur(10px);
}

.entertainment-item h3 {
    color: #E6B17A;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.entertainment-item p {
    color: #F5F0E6;
    line-height: 1.6;
}

/* Favorites Section */
.favorites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.favorite-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(230, 177, 122, 0.2);
    backdrop-filter: blur(10px);
}

.favorite-item h3 {
    color: #E6B17A;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.favorite-item ul {
    list-style: none;
}

.favorite-item li {
    color: #F5F0E6;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(230, 177, 122, 0.1);
}

.favorite-item li:last-child {
    border-bottom: none;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: #E6B17A;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #F5F0E6;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #F5F0E6;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(230, 177, 122, 0.2);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(230, 177, 122, 0.3);
    border-radius: 10px;
    color: #F5F0E6;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(245, 240, 230, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E6B17A;
    box-shadow: 0 0 0 3px rgba(230, 177, 122, 0.1);
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #E6B17A, #D4A574);
    color: #4B371C;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 177, 122, 0.3);
}

/* Footer */
.footer {
    background: #3A2A15;
    padding: 2rem 0;
    text-align: center;
    color: #D4A574;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        padding-top: 150px;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .writings-grid,
    .gallery-grid,
    .entertainment-content,
    .favorites-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 1rem;
        padding-top: 150px;
    }
    
    .nav {
        gap: 0.5rem;
    }
    
    .nav a {
        font-size: 0.9rem;
        padding: 0.5rem;
    }
} 