/* Base responsive styles */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #333333;
    --accent-color: #c8a97e;
    --text-color: #333333;
    --light-bg: #f8f8f8;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --section-padding-desktop: 120px;
    --section-padding-tablet: 80px;
    --section-padding-mobile: 50px;
    --section-padding-small: 30px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Work Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 40px;
    position: relative;
    color: var(--primary-color);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(15px, 5vw, 50px);
}

.section {
    padding: var(--section-padding-desktop) 0;
}

/* Navigation */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container.scrolled {
    padding: 15px 50px;
    background: rgba(255, 255, 255, 0.98);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Header/Hero Section */
.header {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1649209478867-17cc66f54b2c?q=80&w=870&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover fixed;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeIn 1.5s ease;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 6vw, 64px);
    margin-bottom: 20px;
    line-height: 1.2;
    animation: slideUp 1s ease 0.5s both;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 300;
    margin-bottom: 40px;
    animation: slideUp 1s ease 0.7s both;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: slideUp 1s ease 0.9s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: opacity 0.3s ease;
    text-align: center;
}

.scroll-indicator:hover {
    opacity: 0.8;
}

.scroll-indicator p {
    color: var(--white);
    font-size: 14px;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 300;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 15px;
    position: relative;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.scroll-indicator:hover .mouse {
    transform: scale(1.1);
}

.mouse::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    background: var(--white);
    left: 50%;
    transform: translateX(-50%);
    top: 8px;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

/* About Section */
.about-section {
    padding: var(--section-padding-desktop) 0;
    background: var(--light-bg);
}

/* Expertise Section */
.expertise-section {
    padding: 120px 0;
    background: var(--white);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.expertise-card {
    text-align: center;
    padding: 40px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.expertise-card i {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.expertise-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.expertise-card p {
    color: var(--secondary-color);
    line-height: 1.7;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    padding-right: 50px;
}

.lead {
    font-size: clamp(16px, 2.5vw, 24px);
    font-weight: 300;
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.5;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat {
    text-align: center;
    padding: 25px 15px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-10px);
}

.stat-number {
    display: block;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: clamp(12px, 2vw, 16px);
    color: var(--secondary-color);
}

/* Gallery Section */
.gallery-section {
    padding: 120px 0;
    background: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 30px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 24px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay h3 {
    transform: translateY(0);
}

/* Services Section */
.services-section {
    padding: 120px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card i {
    font-size: 36px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Parallax Section */
.parallax-section {
    height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1632809508410-ad0306bb966d?q=80&w=880&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.parallax-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: var(--light-bg);
    text-align: center;
}

.contact-lead {
    font-size: 24px;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.email-link, .website {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: var(--accent-color);
}

.email-link i, .website i {
    color: var(--accent-color);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .expertise-grid {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .section {
        padding: var(--section-padding-tablet) 0;
    }
    
    .about-section {
        padding: var(--section-padding-tablet) 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .expertise-card {
        padding: 30px;
    }

    .lead {
        font-size: clamp(16px, 2.5vw, 20px);
        margin-bottom: 20px;
    }
    
    .about-stats {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 20px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        margin: 0;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.wide {
        grid-column: auto;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .expertise-card {
        padding: 25px;
    }

    .expertise-card i {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .about-section {
        padding: var(--section-padding-mobile) 0;
    }

    .about-grid {
        gap: 30px;
    }

    .lead {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .about-text p {
        font-size: 15px;
        line-height: 1.6;
    }

    h2 {
        font-size: clamp(22px, 5vw, 28px);
        margin-bottom: 25px;
    }
    
    .stat {
        padding: 20px 10px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .section {
        padding: var(--section-padding-small) 0;
    }
    
    .about-section {
        padding: var(--section-padding-small) 0;
    }

    .container {
        padding: 0 15px;
    }

    .about-grid {
        gap: 20px;
    }

    .lead {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .about-text p {
        font-size: 14px;
        line-height: 1.5;
    }

    h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .about-stats {
        gap: 10px;
    }
    
    .stat {
        padding: 15px 8px;
    }
    
    .stat-number {
        font-size: 28px;
        margin-bottom: 2px;
    }
    
    .stat-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .stat {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }

    .about-section {
        padding: 40px 0;
    }

    .about-grid {
        gap: 25px;
    }

    .lead {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .about-text p {
        font-size: 14px;
        line-height: 1.5;
    }

    h2 {
        font-size: 22px;
        margin-bottom: 25px;
    }
} 

@media (max-width: 380px) {
    .about-section {
        padding: 25px 0;
    }
    
    .about-grid {
        gap: 15px;
    }
    
    .lead {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .about-text p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .stat {
        padding: 12px;
    }
} 