/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== HEADER / NAV ===== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    z-index: 1000;
    padding: 12px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-area img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-area h1 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: #f5f5f5;
    letter-spacing: 2px;
}

nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

nav a {
    color: #ddd;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

nav a:hover {
    color: #c9a96e;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #f5f5f5;
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #3a3a3a 0%, #1c1c1c 45%, #000 100%);
    padding: 100px 20px 60px;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 4px 4px;
    opacity: 0.4;
    pointer-events: none;
}

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

.hero-content h2 {
    font-family: 'Cinzel', serif;
    color: #f5f5f5;
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: 6px;
    margin-bottom: 16px;
}

.hero-content p {
    color: #c9a96e;
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    border: 2px solid #c9a96e;
    color: #c9a96e;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    border-radius: 2px;
}

.btn:hover {
    background: #c9a96e;
    color: #000;
}

/* ===== SECTIONS ===== */
section {
    padding: 80px 5%;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 12px;
    color: #222;
}

.section-subtitle {
    text-align: center;
    color: #777;
    font-size: 1rem;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 40px 24px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.service-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #222;
}

.service-card p {
    color: #666;
    font-size: 0.9rem;
}

/* ===== GALLERY PREVIEW ===== */
.gallery-preview {
    background: #f5f5f5;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

.see-more-wrap {
    text-align: center;
    margin-top: 40px;
}

/* ===== OFFERS ===== */
.offers-section {
    background: #1c1c1c;
    color: #f5f5f5;
}

.offers-section .section-title {
    color: #f5f5f5;
}

.offers-section .section-subtitle {
    color: #aaa;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.offers-grid img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s;
}

.offers-grid img:hover {
    transform: scale(1.02);
}

/* ===== CONTACT ===== */
.contact-section {
    background: #fafafa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-item .icon {
    font-size: 1.5rem;
    color: #c9a96e;
    min-width: 30px;
}

.contact-item h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: #222;
}

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

.map-embed {
    border-radius: 8px;
    overflow: hidden;
    min-height: 250px;
}

.map-embed iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
}

/* ===== FOOTER ===== */
footer {
    background: #111;
    color: #999;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.85rem;
}

footer a {
    color: #c9a96e;
}

/* ===== GALLERY PAGE ===== */
.page-header {
    padding: 120px 20px 60px;
    text-align: center;
    background: radial-gradient(circle at center, #3a3a3a 0%, #1c1c1c 45%, #000 100%);
}

.page-header h2 {
    font-family: 'Cinzel', serif;
    color: #f5f5f5;
    font-size: 2.5rem;
    letter-spacing: 4px;
}

.page-header p {
    color: #c9a96e;
    margin-top: 10px;
    letter-spacing: 2px;
}

.full-gallery {
    padding: 60px 5%;
}

.gallery-category {
    margin-bottom: 60px;
}

.gallery-category h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #333;
    border-left: 4px solid #c9a96e;
    padding-left: 14px;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.gallery-masonry img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s, opacity 0.3s;
    cursor: pointer;
}

.gallery-masonry img:hover {
    transform: scale(1.03);
    opacity: 0.9;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10000;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(0,0,0,0.95);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }

    nav.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h2 {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-masonry {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

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

    .gallery-masonry {
        grid-template-columns: 1fr;
    }

    .logo-area h1 {
        font-size: 1rem;
    }
}
