/* Luxury Interior Design CSS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #f5f5f0;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    background: #1a1a1a;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #d4af37;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 40px;
}

.logo {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: #d4af37;
    font-family: 'Garamond', serif;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #e8e8e8;
    font-weight: 300;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: color 0.3s;
    font-family: 'Arial', sans-serif;
}

.nav-links a:hover {
    color: #d4af37;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 70px;
}

.hero-content {
    max-width: 800px;
}

.hero-subtitle {
    display: block;
    font-size: 0.95rem;
    letter-spacing: 3px;
    color: #d4af37;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #fff;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-weight: 300;
    font-style: italic;
}

.luxury-btn {
    display: inline-block;
    padding: 16px 45px;
    background: #d4af37;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.4s;
    border: 2px solid #d4af37;
    font-family: 'Arial', sans-serif;
}

.luxury-btn:hover {
    background: transparent;
    color: #d4af37;
}

/* Section Label */
.section-label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: #d4af37;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
}

/* About Section */
.about {
    padding: 120px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 400;
    line-height: 1.3;
}

.about-text p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-family: 'Arial', sans-serif;
}

.signature {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.signature-name {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
    font-style: italic;
}

.signature-title {
    font-size: 0.9rem;
    color: #888;
    font-family: 'Arial', sans-serif;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #f5f5f0;
    border: 1px solid #d4af37;
}

.stat-item h3 {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.stat-item p {
    font-size: 0.9rem;
    color: #555;
    font-family: 'Arial', sans-serif;
}

/* Showcase Section */
.showcase {
    padding: 120px 0;
    background: #f5f5f0;
}

.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
}

.showcase-header h2 {
    font-size: 3rem;
    color: #1a1a1a;
    font-weight: 400;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.showcase-item {
    position: relative;
    overflow: hidden;
    height: 500px;
    cursor: pointer;
}

.showcase-item.large {
    grid-row: span 2;
    height: auto;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
    filter: brightness(0.9);
}

.showcase-item:hover img {
    transform: scale(1.08);
    filter: brightness(1);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: #fff;
    padding: 2.5rem;
    transform: translateY(50%);
    transition: transform 0.4s;
}

.showcase-item:hover .showcase-overlay {
    transform: translateY(0);
}

.project-category {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #d4af37;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
}

.showcase-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.showcase-overlay p {
    font-size: 0.95rem;
    font-style: italic;
    opacity: 0.9;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: #1a1a1a;
    color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.feature-box {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.feature-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: #fff;
}

.feature-box p {
    color: #ccc;
    line-height: 1.8;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: #fff;
}

.services h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
    font-weight: 400;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem;
    background: #f5f5f0;
    border-left: 3px solid #d4af37;
    transition: all 0.3s;
}

.service-item:hover {
    background: #fff;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 400;
}

.service-content p {
    color: #555;
    line-height: 1.8;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
}

.service-number {
    font-size: 4rem;
    color: #d4af37;
    opacity: 0.3;
    font-weight: 300;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: #f5f5f0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.contact-info > p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.8;
    font-family: 'Arial', sans-serif;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-detail h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-weight: 500;
    font-family: 'Arial', sans-serif;
}

.contact-detail p {
    color: #666;
    line-height: 1.8;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
}

.contact-form {
    background: #fff;
    padding: 3rem;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    background: #fafafa;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: #fff;
}

.submit-btn {
    padding: 16px;
    background: #d4af37;
    color: #1a1a1a;
    border: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Arial', sans-serif;
}

.submit-btn:hover {
    background: #1a1a1a;
    color: #d4af37;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
}

.footer-brand h3 {
    font-size: 1.4rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
}

.footer-brand p {
    color: #888;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
}

.footer-bottom p {
    color: #666;
    font-size: 0.85rem;
    font-family: 'Arial', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}
