/* Global Styles */
:root {
    --gold: #c5a059;
    --dark: #121212;
    --dark-gray: #1f1f1f;
    --light-gray: #f4f4f4;
    --white: #ffffff;
    --text-color: #333333;
    --text-light: #cccccc;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.separator {
    width: 80px;
    height: 3px;
    background-color: var(--gold);
    margin: 20px auto;
}

.separator-dark {
    width: 80px;
    height: 3px;
    background-color: var(--dark);
    margin: 20px auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--white);
}

.btn-gold:hover {
    background-color: #b08d4a;
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--dark);
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-dark:hover {
    background-color: var(--gold);
    color: var(--white);
}


.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    color: var(--white);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: #25D366;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    color: #128C7E;
    transform: translateX(5px);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.95);
    z-index: 1000;
    padding: 20px 0;
    transition: padding 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--white);
    letter-spacing: 2px;
    font-weight: bold;
}

.logo-img {
    height: 80px;
    /* Adjust based on header size */
    width: auto;
    transition: height 0.3s ease;
}

.logo span {
    color: var(--gold);
}

.nav-links ul {
    /* Desktop links */
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--gold);
}

.menu-toggle {
    display: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('assets/images/hero.png');
    /* Use the copied image */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features - Dark Theme */
.bg-dark {
    background-color: var(--dark);
    color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: var(--dark-gray);
    padding: 40px 30px;
    border: 1px solid rgba(197, 160, 89, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--white);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Parallax/Banner */
.parallax-section {
    background-image: url('assets/images/hero.png');
    /* Reusing hero for now, could be another image */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    position: relative;
    text-align: center;
    color: var(--white);
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.parallax-section .content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.parallax-section h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

/* Gallery Tabs */
.gallery-tabs {
    margin-bottom: 40px;
}

.tab-btn {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--dark);
    padding: 10px 30px;
    margin: 0 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sub Tabs */
.sub-tabs {
    margin-top: 30px;
    margin-bottom: 30px;
}

.sub-tab-btn {
    background: transparent;
    border: 1px solid var(--text-light);
    color: var(--text-light);
    padding: 8px 20px;
    margin: 0 5px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-body);
    letter-spacing: 1px;
    border-radius: 20px;
}

.sub-tab-btn.active,
.sub-tab-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.sub-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.sub-tab-content.active {
    display: block;
}

.placeholder-text {
    text-align: center;
    color: #999;
    font-style: italic;
    grid-column: 1 / -1;
    padding: 20px;
}

/* Gallery Grid Override for placeholders */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}


.gallery-item {
    position: relative;
    height: 350px;
    background-color: #ddd;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #f4f4f4;
    /* Optional: light background to make non-square images look better */
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--gold);
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--gold);
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Placeholders for gallery items */
.item-1 {
    background: url('assets/images/interior.png') center/cover;
}

.item-2 {
    background: url('assets/images/hero.png') center/cover;
}

.item-3 {
    background: url('assets/images/interior.png') center/cover;
}

/* Reuse */
.item-4 {
    background: url('assets/images/hero.png') center/cover;
}

/* Reuse */

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(197, 160, 89, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.5rem;
    border-bottom: 2px solid var(--white);
    padding-bottom: 10px;
}



/* Contact */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    margin-top: 30px;
}

.contact-info .info-item i {
    font-size: 24px;
    color: var(--gold);
    margin-right: 20px;
    margin-top: 5px;
}

.contact-info h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-form {
    flex: 1;
    background: var(--dark-gray);
    padding: 40px;
    min-width: 300px;
    border-radius: 4px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

/* Footer */
.footer {
    background: #000;
    color: #555;
    padding: 30px 0;
    font-size: 0.8rem;
}

/* Footer Social */
.social-links {
    margin-bottom: 20px;
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark);
        padding: 20px;
        display: none;
        text-align: center;
    }

    .nav-links.active {
        display: block;
    }

    .nav-links ul {
        flex-direction: column;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        flex-direction: column;
    }
}