/* Luxury Wallpaper Installation Services - Style */

:root {
    --primary-color: #1a1a1a; /* Matte Black */
    --secondary-color: #c5a059; /* Gold/Brass accent */
    --bg-light: #f9f7f2; /* Soft Beige */
    --text-dark: #333333; /* Dark Charcoal */
    --text-light: #ffffff;
    --neutral-warm: #e5e0d8;
    --font-luxury: 'Playfair Display', serif;
    --font-modern: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-modern);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: var(--font-luxury);
    font-weight: 700;
}

/* Header & Nav */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    height: 80px;
    display: flex;
    align-items: center;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: var(--font-luxury);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

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

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: #333;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: #b08d4a;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.full-width {
    width: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.3));
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero .description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-btns .btn {
    margin-right: 15px;
}

/* Section Styling */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--secondary-color);
    margin: 20px auto 0;
}

/* Services */
.services {
    background-color: #fff;
}

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

.service-card {
    padding: 40px;
    background: var(--bg-light);
    text-align: center;
    transition: transform 0.3s;
}

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

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

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

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 20px 20px 0 var(--neutral-warm);
}

.about-text {
    flex: 1;
}

.about-text .section-title {
    text-align: left;
}

.about-text .section-title::after {
    margin: 20px 0 0;
}

.about-text p {
    margin-bottom: 20px;
}

.features {
    list-style: none;
    margin-top: 30px;
}

.features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.features i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 0.8rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    height: 300px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

/* Why Choose Us */
.why-choose-us {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: center;
}

.why-item h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Map */
.map-container {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Contact */
.contact-flex {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info .section-title {
    text-align: left;
}

.contact-info .section-title::after {
    margin: 20px 0 0;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: var(--neutral-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    color: var(--primary-color);
}

.info-item a {
    text-decoration: none;
    color: inherit;
}

.contact-btns {
    margin-top: 30px;
}

.contact-btns .btn {
    margin-right: 10px;
}

.contact-form-container {
    flex: 1;
    background: #fff;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    font-family: var(--font-modern);
    outline: none;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--secondary-color);
}

.success-content {
    text-align: center;
    padding: 40px 0;
}

.success-content i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: #111;
    color: #888;
    padding: 50px 0;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-luxury);
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-flex, .contact-flex {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
}
