/* Import professional fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Merriweather:wght@300;400&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafaf9;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Merriweather', serif;
    font-weight: 300;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #2c2c2c;
    margin-bottom: 1rem;
}

p {
    font-size: 1.125rem;
    font-weight: 400;
    color: #4a4a4a;
    max-width: 65ch;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 250, 249, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 115, 85, 0.1);
    z-index: 100;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    padding: 0.75rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 200px;
    width: auto;
    margin-right: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.company-name {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #1a1a1a;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

/* Main Content */
main {
    margin-top: 120px;
}

/* Sections */
section {
    padding: 6rem 0;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.intro-section {
    text-align: center;
    padding: 8rem 0;
    animation-delay: 0.7s;
}

.services-section {
    background: linear-gradient(135deg, #f8f7f4 0%, #f0ede7 100%);
    animation-delay: 1s;
}

.contact-section {
    text-align: center;
    padding: 8rem 0;
    animation-delay: 1.3s;
}

/* Intro Section Styling */
.tagline {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: #6366f1;
    font-weight: 500;
    margin-bottom: 3rem;
    letter-spacing: 0.02em;
}

.intro-description {
    margin: 0 auto;
    font-size: 1.25rem;
    color: #6b6b6b;
    text-align: center;
}

/* Services Section Styling */
.services-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.services-title {
    color: #8b7355;
    margin-bottom: 2.5rem;
}

.services-description {
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

/* Contact Section Styling */
.contact-title {
    color: #2c2c2c;
    margin-bottom: 2rem;
}

.contact-email {
    font-size: 1.3rem;
    font-weight: 500;
    color: #6366f1;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.contact-email:hover {
    color: #4f46e5;
    transform: translateY(-1px);
}

.contact-email::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #8b7355);
    transition: width 0.3s ease;
}

.contact-email:hover::after {
    width: 100%;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .header-content {
        padding: 1rem 1.5rem;
    }
    
    .logo {
        height: 40px;
    }
    
    .company-name {
        font-size: 1.2rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .intro-section,
    .contact-section {
        padding: 6rem 0;
    }
    
    main {
        margin-top: 100px;
    }
    
    p {
        font-size: 1rem;
    }
    
    .services-description {
        font-size: 1.1rem;
    }
    
    .contact-email {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .header-content {
        padding: 1rem;
    }
    
    .company-name {
        font-size: 1.1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .intro-section,
    .contact-section {
        padding: 5rem 0;
    }
}

/* Smooth scroll offset for fixed header */
html {
    scroll-padding-top: 120px;
}

/* Subtle hover effects */
body {
    cursor: default;
}

a {
    cursor: pointer;
}

/* Print styles */
@media print {
    header {
        position: static;
        background: white;
        border: none;
    }
    
    main {
        margin-top: 0;
    }
    
    section {
        page-break-inside: avoid;
        animation: none;
        opacity: 1;
        transform: none;
    }
}