/* ====================================
   CuteEdge Home Decors - Custom CSS
   Luxury Interior Design Website
   ==================================== */

/* CSS Variables - Minimalist Palette */
:root {
    --primary-bg: #FFFFFF;
    --secondary-bg: #F8F8F8;
    --primary-text: #000000;
    --accent-color: #000000;
    --accent-light: #666666;
    --border-color: #E0E0E0;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-large: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--primary-text);
    background-color: var(--secondary-bg);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
}

/* Typography - Sleek & Elegant */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-weight: 300;
}

/* Navigation Bar - Minimalist */
.navbar {
    padding: 1.2rem 0;
    transition: var(--transition-smooth);
    background-color: var(--primary-bg) !important;
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.brand-logo {
    color: var(--primary-text);
    transition: var(--transition-smooth);
}

.brand-logo:hover {
    opacity: 0.7;
}

.navbar-nav .nav-link {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--primary-text);
    margin: 0 1.5rem;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition-smooth);
    letter-spacing: 0.02em;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: var(--transition-smooth);
}

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

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-color);
}

/* Hero Section with Parallax */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--secondary-bg);
}

.hero-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('https://images.unsplash.com/photo-1600210492493-0946911123ea?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
    transform: translateZ(0);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.85) 0%, rgba(30, 30, 30, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero-title {
    color: var(--secondary-bg);
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--cta-highlight);
    font-weight: 300;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    font-style: italic;
}

.hero-description {
    max-width: 900px;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.8;
}

.hero-description p {
    margin-bottom: 1.5rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2.5rem;
    color: var(--cta-highlight);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Animation Classes */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.animate-fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
}

.animate-fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1s ease-out 0.6s forwards;
}

.animate-fade-in-delay-3 {
    opacity: 0;
    animation: fadeIn 1s ease-out 0.9s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Fade-in on Scroll */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* CTA Button - Modern Minimal */
.btn-cta {
    background: var(--primary-text);
    color: var(--secondary-bg);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    border-radius: 0;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    z-index: -1;
}

.btn-cta:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-cta:hover {
    color: var(--secondary-bg);
    transform: translateY(-2px);
}

/* Section Padding */
.section-padding {
    padding: 6rem 0;
}

.section-title {
    color: var(--primary-text);
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent-color);
}

.section-subtitle {
    color: var(--accent-light);
    font-size: 1rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

/* Slideshow Gallery - Minimalist */
.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 16/10;
    background: #000;
    overflow: hidden;
}

.slideshow-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slideshow-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slideshow-slide.active {
    opacity: 1;
    z-index: 1;
}

.slideshow-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation Arrows */
.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    font-size: 1.5rem;
}

.slideshow-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slideshow-nav.prev {
    left: 20px;
}

.slideshow-nav.next {
    right: 20px;
}

/* Slide Indicators */
.slideshow-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slide-indicator {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slide-indicator.active {
    background: white;
    width: 30px;
}

/* Slideshow Controls */
.slideshow-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.slideshow-control-btn {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slideshow-control-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slideshow-counter {
    color: white;
    font-size: 0.9rem;
    font-weight: 300;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 15px;
}

/* Responsive Slideshow */
@media (max-width: 768px) {
    .slideshow-container {
        aspect-ratio: 4/3;
    }
    
    .slideshow-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .slideshow-nav.prev {
        left: 10px;
    }
    
    .slideshow-nav.next {
        right: 10px;
    }
    
    .slideshow-controls {
        top: 10px;
        right: 10px;
    }
}


/* Services Section */
.services-hero-image {
    overflow: hidden;
    max-height: 400px;
}

.services-hero-image img {
    object-fit: cover;
    height: 400px;
    transition: var(--transition-smooth);
}

.services-hero-image:hover img {
    transform: scale(1.05);
}

.service-card {
    background: var(--secondary-bg);
    padding: 2.5rem 2rem;
    height: 100%;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: var(--accent-color);
    transition: var(--transition-smooth);
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid var(--accent-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--accent-color);
}

.service-card:hover .service-icon i {
    color: var(--secondary-bg);
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--accent-color);
    transition: var(--transition-smooth);
}

.service-title {
    color: var(--primary-text);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
}

/* About Section */
.about-content {
    font-size: 1rem;
    line-height: 1.9;
    color: #444;
}

.about-content p {
    margin-bottom: 1.8rem;
}

.stats-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    background: var(--secondary-bg);
    padding: 2rem 1.5rem;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-3px);
    border-color: var(--accent-color);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--accent-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition-smooth);
}

.stat-item:hover .stat-icon {
    background: var(--accent-color);
}

.stat-item:hover .stat-icon i {
    color: var(--secondary-bg);
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: var(--transition-smooth);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-text);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 300;
    margin-bottom: 0;
}

.about-image-wrapper {
    overflow: hidden;
}

.about-image-wrapper img {
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

/* Contact Section */
.contact-image-wrapper {
    overflow: hidden;
    border-radius: 0;
}

.contact-image-wrapper img {
    transition: var(--transition-smooth);
}

.contact-image-wrapper:hover img {
    transform: scale(1.05);
}

.contact-info-box {
    background: var(--secondary-bg);
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-info-box h4 {
    font-size: 0.95rem;
    color: var(--primary-text);
    font-weight: 400;
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--primary-text);
    text-decoration: none;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.contact-link:hover {
    color: var(--accent-light);
    border-bottom-color: var(--accent-light);
}

.text-accent {
    color: var(--accent-color);
}

/* Contact Form */
.consultation-note {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(184, 152, 109, 0.08);
    padding: 1rem 1.5rem;
    margin-top: 1rem;
    border-left: 2px solid var(--accent-color);
}

.consultation-note i {
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.consultation-note span {
    color: var(--primary-text);
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: left;
    font-weight: 300;
}

.contact-form-wrapper {
    background: var(--secondary-bg);
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 0;
}

.form-label {
    font-weight: 500;
    color: var(--primary-text);
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.form-control,
.form-select {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-weight: 300;
    transition: var(--transition-smooth);
    background: var(--primary-bg);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-color);
    box-shadow: none;
    background: var(--secondary-bg);
}

.form-check-input {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0;
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0.5rem;
}

.form-check-input:checked {
    background-color: var(--primary-text);
    border-color: var(--primary-text);
}

.form-check-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 300;
}

.invalid-feedback {
    font-size: 0.85rem;
}

/* Footer */
.footer {
    background-color: var(--primary-text);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

.footer-title {
    color: var(--secondary-bg);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.7;
    font-weight: 300;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 1rem;
}

.social-links a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--secondary-bg);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 991px) {
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }
    
    .hero-section {
        min-height: 100vh;
    }
    
    .hero-parallax-bg {
        background-attachment: scroll;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .service-card,
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .consultation-note {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .consultation-note span {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .brand-name {
        font-size: 1.4rem;
    }
    
    .brand-subtitle {
        font-size: 0.65rem;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .btn-cta {
        padding: 0.85rem 2rem;
        font-size: 0.95rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .scroll-indicator,
    .footer {
        display: none;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

