/* ===========================
   MODERN HOME DECOR CSS
   Full Responsive Design
   =========================== */

:root {
    --primary-color: #d4a574;
    --dark-color: #1a1a1a;
    --light-color: #f8f8f8;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: var(--light-color);
    line-height: 1.6;
}

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

.navbar {
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.brand-text {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--dark-color);
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin-left: 1.5rem;
    color: #555 !important;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

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

.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, var(--light-color) 100%);
    overflow: hidden;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    letter-spacing: -1px;
}

.hero-text p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-text .btn {
    font-weight: 600;
    border-radius: 50px;
    padding: 0.75rem 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.hero-text .btn-dark {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
}

.hero-text .btn-dark:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hero-text .btn-outline-dark:hover {
    background-color: var(--dark-color);
    color: white;
    border-color: var(--dark-color);
}

.hero-section img {
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

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

#services {
    background: linear-gradient(135deg, var(--light-color) 0%, #fff 100%);
}

.service-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #e6c99d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
}

.service-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn-link:hover {
    color: var(--dark-color);
    transform: translateX(5px);
}

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

#about {
    background: white;
}

#about h2 {
    color: var(--dark-color);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

#about .lead {
    font-size: 1.1rem;
    color: #666;
}

.contact-box {
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.contact-box:hover {
    transform: translateX(10px);
    background: white !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #e6c99d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#about img {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* ===========================
   REVIEWS SECTION
   =========================== */

#reviews {
    background: linear-gradient(135deg, var(--light-color) 0%, #fff 100%);
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stars {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.stars i {
    margin-right: 0.3rem;
}

.review-text {
    color: #666;
    font-style: italic;
    line-height: 1.8;
    font-size: 0.95rem;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

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

#contact {
    background: white;
}

.contact-info {
    margin-top: 2rem;
}

.contact-info h6 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-form .form-control-lg {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form .form-control-lg:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25);
}

.contact-form .btn {
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

footer {
    background-color: var(--dark-color) !important;
}

footer a {
    transition: var(--transition);
}

footer a:hover {
    color: var(--primary-color) !important;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white !important;
}

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

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 575.98px) {
    .navbar-brand {
        font-size: 1.3rem !important;
    }

    .navbar-nav .nav-link {
        margin-left: 0.5rem;
        padding: 0.5rem 0.25rem;
        font-size: 0.95rem;
    }

    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-text p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-section {
        min-height: 70vh;
        padding: 2rem 0;
    }

    .hero-text .btn {
        font-size: 0.85rem;
        padding: 0.6rem 1.5rem;
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .service-card h4 {
        font-size: 1.2rem;
    }

    #about {
        padding: 2rem 0 !important;
    }

    #reviews {
        padding: 2rem 0 !important;
    }

    #contact {
        padding: 2rem 0 !important;
    }

    .contact-box {
        margin-bottom: 1rem;
        padding: 1rem !important;
    }

    .icon-circle {
        width: 50px;
        height: 50px;
    }

    .reviewer-avatar {
        width: 50px;
        height: 50px;
    }

    footer {
        padding: 2rem 0 !important;
    }

    footer .row.g-4 {
        gap: 2rem !important;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .service-card {
        padding: 2rem 1.25rem;
    }

    #about .display-5 {
        font-size: 2rem;
    }

    #reviews .display-5 {
        font-size: 2rem;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .hero-section {
        min-height: 100vh;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .service-card {
        padding: 2.5rem 1.5rem;
    }
}

/* Extra large devices (1200px and up) */
@media (min-width: 1200px) {
    .hero-text h1 {
        font-size: 4rem;
    }

    .container {
        max-width: 1140px;
    }
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.service-card,
.review-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.hero-text {
    animation: slideInLeft 0.8s ease-out;
}

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

.text-primary {
    color: var(--primary-color) !important;
}

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

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

/* ===========================
   PRINT STYLES
   =========================== */

@media print {
    .navbar,
    footer,
    .btn {
        display: none;
    }

    body {
        background-color: white;
    }
}

