/* === MODERN RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #8b7355 0%, #a0937d 30%, #d6cfc4 70%, #f5f3f0 100%);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    color: #2d3748;
}

/* === CLEAN BACKGROUND === */

/* === MAIN CONTAINER === */
.main-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.hero-section {
    text-align: center;
    max-width: 800px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

/* === LOGO STYLES === */
.logo-wrapper {
    margin-bottom: 3rem;
}

.logo-container {
    position: relative;
    display: inline-block;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(245, 243, 240, 0.95), rgba(214, 207, 196, 0.85));
    border-radius: 30px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(139, 115, 85, 0.3);
    box-shadow: 
        0 25px 45px rgba(139, 115, 85, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 0 30px rgba(160, 147, 125, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-container:hover {
    transform: translateY(-5px);
    background: linear-gradient(145deg, rgba(250, 248, 245, 0.98), rgba(220, 213, 202, 0.9));
    border: 2px solid rgba(139, 115, 85, 0.4);
    box-shadow: 
        0 35px 60px rgba(139, 115, 85, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 40px rgba(160, 147, 125, 0.4);
}

.logo {
    max-width: 180px;
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.logo:hover {
    transform: scale(1.05);
}

/* === CONTENT SECTION === */
.content-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.text-container {
    background: rgba(245, 243, 240, 0.9);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(160, 147, 125, 0.3);
    box-shadow: 0 20px 40px rgba(139, 115, 85, 0.15);
    max-width: 600px;
    width: 100%;
}

.main-title {
    font-size: clamp(1.8rem, 4vw, 1.8rem);
    font-weight: 600;
    color: #4a3429;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #6b5b4f;
    font-weight: 400;
    line-height: 1.5;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
}

/* === CONTACT SECTION === */
.contact-section {
    width: 100%;
    max-width: 500px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 30px 50px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
}

.contact-info {
    flex: 1;
    text-align: left;
}

.contact-label {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-email {
    font-size: 1.1rem;
    color: #1e293b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
}

.contact-email::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-email:hover {
    color: #667eea;
}

.contact-email:hover::after {
    width: 100%;
}

/* === FOOTER === */
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 400;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    .main-container {
        padding: 1rem 0.75rem;
        min-height: calc(100vh - 80px);
    }
    
    .hero-section {
        max-width: 100%;
    }
    
    .logo-container {
        padding: 1.5rem;
        margin: 0 auto;
    }
    
    .logo {
        max-width: 150px;
    }
    
    .content-section {
        gap: 2rem;
    }
    
    .text-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 120px;
    }
    
    .text-container {
        padding: 1.5rem 1rem;
    }
    
    .contact-card {
        padding: 1.5rem 1rem;
    }
    
    .main-title {
        font-size: 1.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
}

/* === PRINT STYLES === */
@media print {
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}