/* ===================================
   LUXURY INTERIOR - CSS STYLES
   Design: Minimalist Elegance with Gold Accents
   Colors: White (#F8F7F5) + Gold (#D4AF37) + Charcoal (#2C2C2C)
   =================================== */


/* ===================================
   RESET & BASE STYLES
   =================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #2C2C2C;
    background-color: #FFFFFF;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}


/* ===================================
   UTILITY CLASSES
   =================================== */

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.section-padding {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .section-padding {
        padding: 8rem 0;
    }
}

.accent-line {
    width: 3rem;
    height: 0.25rem;
    background-color: #D4AF37;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    color: #2C2C2C;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.75rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: #8B8680;
    max-width: 42rem;
    margin: 0 auto;
}


/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #D4AF37;
    color: white;
}

.btn-primary:hover {
    background-color: #C9A961;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}


/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    background-color: white;
    border-bottom: 1px solid #E8E8E8;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    padding: 1rem;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #D4AF37;
    font-family: 'Playfair Display', serif;
}

.nav-menu {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    color: #2C2C2C;
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #D4AF37;
    transition: width 0.3s ease;
}

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

.language-toggle {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    padding: 0.5rem 1rem;
    background: none;
    color: #8B8680;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.lang-btn.active {
    color: #D4AF37;
    border-bottom-color: #D4AF37;
}

.lang-btn:hover {
    color: #D4AF37;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    background: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
}

.hamburger span {
    width: 1.5rem;
    height: 2px;
    background-color: #2C2C2C;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0.375rem, -0.375rem);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    border-top: 1px solid #E8E8E8;
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    color: #2C2C2C;
    font-weight: 500;
    padding: 0.5rem 0;
}


/* ===================================
   HERO SECTION
   =================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}


/* Hero Background Image - Update URL here */

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../image/luxury-interior-home.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}


/* Dark overlay */

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 48rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}


/* ===================================
   GALLERY SECTION
   =================================== */

#gallery {
    background-color: #F8F7F5;
}

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

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 250px;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item-small {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item-medium {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 767px) {
    .gallery-item-small,
    .gallery-item-medium,
    .gallery-item-large {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 200px;
    }
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-content {
    text-align: center;
    color: white;
}

.gallery-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery-category {
    font-size: 0.875rem;
    opacity: 0.9;
}

.gallery-info {
    background-color: white;
    padding: 1.5rem;
    border-left: 4px solid #D4AF37;
    border-radius: 0.375rem;
}

.gallery-info code {
    background-color: #F8F7F5;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-family: 'Courier New', monospace;
}


/* ===================================
   GALLERY IMAGES - Update URLs here
   =================================== */

#gallery-1 {
    background-image: url('../image/project1/modern-luxury-main.jpg');
}

#gallery-2 {
    background-image: url('../image/project2/minimal\ modern5.jpg');
}

#gallery-3 {
    background-image: url('../image/project3/Coffeeshop1.jpg');
}

#gallery-4 {
    background-image: url('../image/project4/moderns1.jpg');
}

#gallery-5 {
    background-image: url('../image/project5/modernst1.jpg');
}

#gallery-6 {
    background-image: url('../image/project6/luxury1.jpg');
}

#gallery-7 {
    background-image: url('../image/project7/home\ modern1.jpg');
}

#gallery-8 {
    background-image: url('../image/project8/luxury-home1.jpg');
}

#about-image {
    background-image: url('../image/about-luxury-interior.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

#map-image {
    background-image: url('../image/MAP\ NVK.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    min-height: 480px;
}


/* ===================================
   SERVICES SECTION
   =================================== */

#services {
    background-color: white;
}

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

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    padding: 2rem;
    background-color: #F8F7F5;
    border: 1px solid #E8E8E8;
    border-radius: 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-color: #D4AF37;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.25rem;
    color: #2C2C2C;
    margin-bottom: 0.75rem;
}

.service-desc {
    color: #8B8680;
    font-size: 0.95rem;
    line-height: 1.6;
}


/* ===================================
   ABOUT SECTION
   =================================== */

#about {
    background-color: #F8F7F5;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-content {
    order: 2;
}

@media (min-width: 768px) {
    .about-content {
        order: 1;
    }
}

.about-image {
    order: 1;
}

@media (min-width: 768px) {
    .about-image {
        order: 2;
    }
}

.about-text {
    font-size: 1.125rem;
    color: #8B8680;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-features {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #D4AF37;
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.feature p {
    color: #8B8680;
}


/* ===================================
   CONTACT SECTION
   =================================== */

#contact {
    background-color: white;
}

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

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-heading {
    font-size: 1.5rem;
    color: #2C2C2C;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-label {
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: #8B8680;
}

.contact-location {
    color: #D4AF37;
}

.business-hours {
    background-color: #F8F7F5;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

.business-hours h4 {
    color: #D4AF37;
    margin-bottom: 0.75rem;
}

.business-hours p {
    color: #8B8680;
    font-size: 0.95rem;
}


/* ===================================
   CONTACT FORM
   =================================== */

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #E8E8E8;
    border-radius: 0.375rem;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
}


/* ===================================
   FOOTER
   =================================== */

.footer {
    background-color: #2C2C2C;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.5rem;
    color: #D4AF37;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-heading {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-desc {
    color: #A9A39E;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #A9A39E;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D4AF37;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D4AF37;
    border-radius: 0.375rem;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #D4AF37;
    color: #2C2C2C;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: #A9A39E;
    font-size: 0.9rem;
}


/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .service-card {
        padding: 1.5rem;
    }
}


/* ===================================
   ANIMATIONS
   =================================== */

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}


/* ===================================
   PREVENT GOOGLE TRANSLATE
   =================================== */

.goog-te-banner-frame {
    display: none !important;
}

.goog-te-gadget {
    display: none !important;
}

.goog-te-gadget-simple {
    display: none !important;
}

body {
    top: 0 !important;
}