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

/* Fonts & Colors */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0d0d0d;
    color: #f5f5f5;
    line-height: 1.6;
}

/* Headings */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #d4af37; /* Gold */
}

/* Navbar */
header {
    background: #000;
    padding: 20px 50px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
}

.logo span {
    color: #d4af37;
}

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

.nav-links li a {
    text-decoration: none;
    color: #f5f5f5;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #d4af37;
}

/* Hero Section */
.hero {
    background: url('images/hero.webp') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

.btn-primary {
    background: linear-gradient(45deg, #d4af37, #b8860b);
    color: #000;
    padding: 12px 30px;
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #b8860b, #d4af37);
    color: #fff;
}

/* Services Preview */
.services-preview, .services, .addons {
    padding: 60px 50px;
    text-align: center;
}

.service-cards, .services-grid, .addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card, .service-box, .addon-box {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.card:hover, .service-box:hover, .addon-box:hover {
    transform: translateY(-10px);
}

.card img, .service-box img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials {
    background: #111;
    padding: 60px 50px;
    text-align: center;
}

.testimonial-carousel {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

.testimonial {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
    font-style: italic;
}

/* Gallery */
.gallery {
    padding: 60px 50px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item img {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    border: 5px solid #d4af37;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 20px; right: 35px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

/* Contact */
.contact {
    padding: 60px 50px;
    text-align: center;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.contact-form, .contact-map {
    flex: 1;
    min-width: 300px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
    padding: 12px;
    border: none;
    border-radius: 5px;
    background: #1a1a1a;
    color: #f5f5f5;
}

.contact-form input:focus, 
.contact-form textarea:focus, 
.contact-form select:focus {
    outline: 2px solid #d4af37;
}

/* Footer */
footer {
    background: #000;
    padding: 20px 50px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.socials {
    list-style: none;
    display: flex;
    gap: 20px;
}

.socials li a {
    color: #d4af37;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.socials li a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    .contact-container {
        flex-direction: column;
    }
}











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

body {
    font-family: 'Montserrat', sans-serif;
    color: #222;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    background: #000;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #fff;
}

.logo span {
    color: #caa14a;
}

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

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

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

.nav-links a.active {
    color: #caa14a;
}

/* About Hero */
.about-hero {
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url("../about-bg.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-content {
    text-align: center;
    color: #fff;
}

.about-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
}

.about-hero-content p {
    margin-top: 10px;
    font-size: 18px;
}

/* About Section */
.about-section {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 20px;
}

.about-text p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* Mission Vision */
.mission-vision {
    display: flex;
    justify-content: center;
    gap: 40px;
    background: #f8f8f8;
    padding: 60px;
}

.mv-box {
    width: 40%;
    text-align: center;
}

.mv-box h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

/* Stats */
.stats {
    display: flex;
    justify-content: space-around;
    padding: 60px;
    background: #000;
    color: #fff;
}

.stat h2 {
    color: #caa14a;
    font-size: 40px;
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    padding: 20px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
}

.socials {
    list-style: none;
    display: flex;
}

.socials li {
    margin-left: 20px;
}

.socials a {
    color: #fff;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 900px) {
    .about-section {
        flex-direction: column;
        padding: 40px;
    }

    .mission-vision {
        flex-direction: column;
    }

    .mv-box {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 15px;
    }
}
