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

:root {
    --primary: #d4a574;
    --dark: #1a1a1a;
    --light: #ffffff;
    --gray: #888;
    --accent: #c9944a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    color: var(--light);
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s;
    background: transparent;
}

nav.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 5%;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    transition: all 0.3s;
}

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

.logo:hover .logo-text {
    color: var(--accent);
}

nav.scrolled .logo-img {
    height: 40px;
}

nav.scrolled .logo-text {
    font-size: 20px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--light);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)),
    url('https://images.unsplash.com/photo-1606216794074-735e91aa2c92?w=1600') center/cover;
    animation: zoomIn 20s infinite alternate;
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 16px;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 300;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-tagline {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 16px 45px;
    background: var(--primary);
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    border: 2px solid var(--primary);
}

.cta-button:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

.scroll-indicator i {
    font-size: 30px;
    color: var(--primary);
}

/* Section Styles */
section {
    padding: 100px 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--light);
}

/* About Section */
.about {
    background: #0f0f0f;
}

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

.about-text {
    align-self: start;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

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

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--primary);
    font-weight: 700;
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #0f0f0f;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #222;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.service-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--light);
}

.service-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    background: #0f0f0f;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 1;
}

/* First image - Big (takes 2x2 space) */
.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

/* Images 2-5 on the right side of first image (4 small images) */
.gallery-item:nth-child(2),
.gallery-item:nth-child(3),
.gallery-item:nth-child(4),
.gallery-item:nth-child(5) {
    grid-column: span 1;
    grid-row: span 1;
}

/* Remaining 5 images below (img 6-10) - normal size */
.gallery-item:nth-child(6),
.gallery-item:nth-child(7),
.gallery-item:nth-child(8),
.gallery-item:nth-child(9) {
    grid-column: span 1;
    grid-row: span 1;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.view-more {
    text-align: center;
}

.view-more a {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    font-weight: 500;
}

.view-more a:hover {
    background: var(--primary);
    color: var(--dark);
}

/* Testimonials */
.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #0f0f0f;
    padding: 40px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.stars {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--light);
}

/* Contact Section */
.contact {
    background: #0f0f0f;
}

.contact .section-header {
    margin-bottom: 20px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-container .contact-info {
    font-size: 16px;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--primary);
}

.contact-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    font-size: 24px;
    color: var(--primary);
    margin-top: 5px;
}

.info-text h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--light);
}

.info-text p {
    color: var(--gray);
    font-size: 14px;
}

.info-text a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.info-text a:hover {
    color: var(--accent);
}

.cta-instagram {
    margin: 40px 0 30px;
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.instagram-button {
    display: flex;
    align-items: center;
    padding: 16px 40px;
    background: var(--primary);
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    border: 2px solid var(--primary);
    flex: 1;
    text-align: center;
    justify-content: center;
    gap: 12px;
}

.instagram-button:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.instagram-button i {
    font-size: 28px;
    flex-shrink: 0;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    padding: 16px 40px;
    background: #25D366;
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    border: 2px solid #25D366;
    flex: 1;
    text-align: center;
    justify-content: center;
    gap: 12px;
}

.whatsapp-button:hover {
    background: transparent;
    color: #25D366;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-button i {
    font-size: 28px;
    flex-shrink: 0;
}

.contact-image {
    position: relative;
    align-self: start;
    height: 460px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.contact-image img {
    width: 100%;
    height: 100%;
    align-self: start;
    object-fit: cover;
    transition: transform 0.5s;
}

.contact-image:hover img {
    transform: scale(1.05);
}

/* Footer */
footer {
    background: #000;
    padding: 30px 5%;
    text-align: center;
    border-top: 1px solid #222;
}

footer p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 8px;
}

.developer-credit {
    font-size: 13px;
    color: #666;
}

.developer-credit a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.developer-credit a:hover {
    color: var(--accent);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 999;
    font-size: 20px;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.5);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: var(--light);
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    /* Navigation */
    nav {
        padding: 15px 5%;
    }

    .logo-img {
        height: 40px;
    }

    .logo-text {
        font-size: 18px;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        width: 70%;
        max-width: 300px;
        height: 100vh;
        padding: 80px 30px 30px;
        gap: 25px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 18px;
        padding: 10px 0;
    }

    /* Hero Section */
    .hero {
        height: 100vh;
        min-height: 600px;
    }

    .hero-content {
        padding: 0 30px;
    }

    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-tagline {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .cta-button {
        padding: 14px 35px;
        font-size: 14px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-indicator i {
        font-size: 24px;
    }

    /* Sections */
    section {
        padding: 60px 5%;
        scroll-margin-top: 70px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-subtitle {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .section-title {
        font-size: 32px;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h3 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .about-text p {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 30px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 12px;
    }

    .about-image {
        height: 350px;
        order: -1;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 25px;
    }

    .service-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .service-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .service-card p {
        font-size: 14px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 30px;
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(6),
    .gallery-item:nth-child(7),
    .gallery-item:nth-child(8),
    .gallery-item:nth-child(9) {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* Hide last image on mobile to avoid odd pair */
    .gallery-item:nth-child(9) {
        display: none;
    }

    .gallery-item {
        height: 200px;
    }

    .gallery-overlay {
        padding: 15px;
    }

    .view-more a {
        padding: 12px 30px;
        font-size: 14px;
    }

    /* Testimonials */
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonial-card {
        padding: 30px 25px;
    }

    .testimonial-text {
        font-size: 14px;
        margin-bottom: 15px;
    }

    /* Contact */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info h3 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .contact-description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .info-item {
        gap: 15px;
        margin-bottom: 25px;
    }

    .info-icon {
        font-size: 20px;
    }

    .info-text h4 {
        font-size: 15px;
    }

    .info-text p {
        font-size: 14px;
    }

    .cta-instagram {
        margin: 30px 0 25px;
        flex-direction: column;
    }

    .instagram-button {
        padding: 14px 30px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }

    .whatsapp-button {
        padding: 14px 30px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }

    .contact-image {
        height: 300px;
        order: -1;
    }

    /* Footer */
    footer {
        padding: 25px 5%;
    }

    footer p {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .developer-credit {
        font-size: 12px;
    }

    /* Back to Top */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    /* Lightbox */
    .lightbox img {
        max-width: 95%;
        max-height: 85%;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 35px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 30px;
    }

    .section-title {
        font-size: 28px;
    }

    .about-text h3 {
        font-size: 24px;
    }

    .stat-number {
        font-size: 30px;
    }

    .stat-label {
        font-size: 11px;
    }

    .gallery-item {
        height: 175px;
    }

    .contact-info h3 {
        font-size: 22px;
    }
}