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

body {
    font-family: 'Open Sans', sans-serif;
    color: #1A1A1A;
    background-color: #FFFFFF;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: #1A1A1A;
    transition: color 0.3s ease;
}

a:hover {
    color: #333333;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1A1A1A;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #333333;
    color: white;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

nav ul.nav-menu {
    display: flex;
    list-style: none;
}

nav ul.nav-menu li {
    margin-left: 30px;
}

nav ul.nav-menu li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

nav ul.nav-menu li a.active {
    border-bottom: 1px solid #1A1A1A;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #1A1A1A;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: #F5F5F5;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-placeholder.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.9;
}

.hero-content {
    position: absolute;
    bottom: 100px;
    left: 40px;
    max-width: 500px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
}

.scroll-indicator::after {
    content: "";
    width: 1px;
    height: 40px;
    background-color: #1A1A1A;
    margin-top: 10px;
}

/* Featured Work */
.featured-work {
    padding: 100px 40px;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 60px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background-color: #F5F5F5;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

/* About Teaser */
.about-teaser {
    padding: 80px 40px;
    background-color: #F5F5F5;
    text-align: center;
}

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

.about-teaser h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.about-teaser p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-style: italic;
}

/* Footer */
footer {
    padding: 60px 40px;
    background-color: #F5F5F5;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-content p {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.social-links a {
    margin: 0 15px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    nav ul.nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }
    
    nav ul.nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    nav ul.nav-menu li {
        margin: 15px 0;
    }
    
    .hero-content {
        left: 20px;
        bottom: 80px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-work {
        padding: 80px 20px;
    }
    
    .about-teaser {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .about-teaser h2 {
        font-size: 1.8rem;
    }
    
    .about-teaser p {
        font-size: 1.1rem;
    }
}
