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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: #1a1a1a;
    background-color: #fff;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.logo-img {
    height: 56px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.5;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #f8f8f8 0%, #fff 50%, #f5f5f5 100%);
    padding: 6rem 2rem 4rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/hero.jpg') center center / cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.tagline {
    font-size: 1.1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    border: 1px solid #1a1a1a;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #1a1a1a;
    color: #fff;
}

/* Gallery Section */
.gallery {
    padding: 6rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    letter-spacing: 0.15em;
    margin-bottom: 4rem;
    text-transform: uppercase;
}

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

.gallery-item {
    text-align: center;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: #f5f5f5;
    transition: transform 0.3s ease;
}

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

.placeholder-image {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.placeholder-image.portrait {
    aspect-ratio: 3/4;
}

.item-title {
    margin-top: 1rem;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: #666;
}

/* About Section */
.about {
    padding: 6rem 4rem;
    background: #fafafa;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
}

.about-text h2 {
    font-size: 2.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: #444;
}

/* Contact Section */
.contact {
    padding: 6rem 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    letter-spacing: 0.15em;
    margin-bottom: 4rem;
    text-transform: uppercase;
}

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

.contact-info p {
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.contact-info a {
    color: #1a1a1a;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.contact-info a:hover {
    border-color: #1a1a1a;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.contact-form button {
    padding: 1rem 2rem;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-family: inherit;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.contact-form button:hover {
    opacity: 0.8;
}

/* Start Your Project Section */
.start-project {
    padding: 6rem 4rem;
    background: #1a1a1a;
    color: #fff;
}

.project-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.project-intro h2 {
    font-size: 2.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #d4af37;
}

.project-tagline {
    color: #999;
    margin-bottom: 3rem;
}

.project-form {
    text-align: left;
}

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

.form-group label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.whatsapp-button {
    width: 100%;
    padding: 1.25rem 2rem;
    background: #25D366;
    color: #fff;
    border: none;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: background 0.3s ease;
    margin-top: 1rem;
}

.whatsapp-button:hover {
    background: #128C7E;
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    margin-top: 1rem;
}

/* Contact Info Section */
.contact-info-section {
    padding: 4rem;
    background: #fafafa;
}

.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.contact-item h3 {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 0.95rem;
    color: #666;
}

.contact-item a {
    color: #1a1a1a;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.contact-item a:hover {
    border-color: #1a1a1a;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .start-project {
        padding: 4rem 2rem;
    }
}

/* Footer */
.footer {
    padding: 3rem 4rem;
    text-align: center;
    border-top: 1px solid #eee;
}

.footer p {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 1rem;
}

.social-links a {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        padding: 1rem 2rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.75rem;
    }
    
    .hero-content h1 {
        letter-spacing: 0.1em;
    }
    
    .tagline {
        font-size: 0.9rem;
        letter-spacing: 0.15em;
    }
    
    .gallery,
    .about,
    .contact {
        padding: 4rem 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-links {
        display: none;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
