
img{
    max-width: 100%;
    object-fit: cover;
    display: block;
}
a{
    color: inherit;
    text-decoration: none;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #f9f1e7 0%, #e6d3c1 100%);
    color: #2b2b2b;
    line-height: 1.4;
}

/* Common Layout */
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* Header Styles */
header {
    position: fixed;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    z-index: 1000;
    animation: slideIn 0.5s ease-out;
    -webkit-box-shadow: 0px 2px 8px -5px rgba(34, 60, 80, 0.4);
    -moz-box-shadow: 0px 2px 8px -5px rgba(34, 60, 80, 0.4);
    box-shadow: 0px 2px 8px -5px rgba(34, 60, 80, 0.4);
}

@keyframes slideIn {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

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

.logo {
    font-size: 2rem;
    color: #d4a373;
    animation: fadeIn 1s ease;
}

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

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #2b2b2b;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #d4a373;
    transition: width 0.3s ease;
}

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

.nav-links a:hover {
    color: #d4a373;
}

.burger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #d4a373, #e6b800);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    margin-top: 15px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: scale(1.05);
}

/* Footer Styles */
footer {
    background: #2b2b2b;
    color: #fff;
    padding: 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.footer-grid h3 {
    margin-bottom: 20px;
}

.footer-grid a {
    color: #d4a373;
    text-decoration: none;
}

.footer-grid a:hover {
    text-decoration: underline;
}
footer p{
    margin-bottom: 15px;
}
/* Index Page Styles */
.hero {
    text-align: center;
    background: url('image/banner.jpeg') center/cover no-repeat;
    color: #fff;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    padding: 60px 0;
    animation: fadeInUp 1s ease;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}
.vibe {
            background: #fff;
            text-align: center;
        }

        .vibe h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 20px;
            animation: fadeIn 1s ease;
        }

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

        .vibe-item {
            position: relative;
            overflow: hidden;
            transform: translateY(20px);
            opacity: 0;
            animation: slideUp 0.5s ease forwards;
        }

        @keyframes slideUp {
            to { transform: translateY(0); opacity: 1; }
        }

        .vibe-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .vibe-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

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

        .vibe-overlay h3 {
            color: #fff;
            font-size: 1.5rem;
        }

.story .container{
    display: flex;
    align-items: center;
    gap: 40px;
}

.story-content {
    width: 50%;
    transform: translateX(20px);
    opacity: 0;
    animation: slideInRight 0.7s ease forwards;
}

@keyframes slideInRight {
    to { transform: translateX(0); opacity: 1; }
}
.inspiration-tips{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.story img {
    width: 50%;
    height: 400px;
    object-fit: cover;
    animation: fadeIn 1s ease;
}

.showcase {
    background: #f9f1e7;
    text-align: center;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}

.showcase-item {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.5s ease forwards;
}

.showcase-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}
.accordion {
            background: #f9f1e7;
        }

        .accordion-item {
            margin-bottom: 10px;
            border-bottom: 1px solid #d4a373;
            transform: translateY(20px);
            opacity: 0;
            animation: slideUp 0.5s ease forwards;
        }

        .accordion-header {
            padding: 15px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .accordion-header i {
            transition: transform 0.3s ease;
        }

        .accordion-header.active i {
            transform: rotate(180deg);
        }

        .accordion-content {
            display: none;
            padding: 15px;
        }

        .accordion-content.active {
            display: block;
        }
        .collections {
            background: #fff;
            text-align: center;
        }

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

        .collection-item {
            background: #f9f1e7;
            padding: 20px;
            border-radius: 10px;
            transform: translateY(20px);
            opacity: 0;
            animation: slideUp 0.5s ease forwards;
        }

        .collection-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 5px;
        }
        .process {
            background: #f9f1e7;
        }

        .process-grid {
            margin-top: 30px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .process-card {
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            transform: translateY(20px);
            opacity: 0;
            animation: slideUp 0.5s ease forwards;
        }

        .process-card i {
            font-size: 2rem;
            color: #d4a373;
            margin-bottom: 15px;
        }

        .contact form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 600px;
            margin: 0 auto;
            margin-top: 40px;
        }

        .contact input, .contact textarea {
            padding: 15px;
            border: 1px solid #d4a373;
            border-radius: 5px;
            font-family: 'Inter', sans-serif;
            transition: border-color 0.3s ease;
        }

        .contact input:focus, .contact textarea:focus {
            border-color: #e6b800;
            outline: none;
        }

        .contact .checkbox {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        button{
            border: none;
        }
/* About Page Styles */
.intro {
    text-align: center;
    background: url('image/blue.webp') center/cover no-repeat;
    color: #fff;
    position: relative;
}
.intro-catalog{
background: url('image/dining.jpeg') center/cover no-repeat;
}
.intro-decor{
    background: url('image/Vivid.webp') center/cover no-repeat;
}
.intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.intro-content {
    position: relative;
    padding: 60px 0;
    animation: fadeInUp 1s ease;
}

.intro h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
   
}

.value-item {
    padding: 20px;
     border-radius: 10px;
    background-color: #fff;
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.5s ease forwards;
}

.value-item i {
    font-size: 2rem;
    color: #d4a373;
    margin-bottom: 15px;
}

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    width: 4px;
    height:65%;
    background: #d4a373;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    padding: 20px;
    background: #f9f1e7;
    border-radius: 10px;
    animation: fadeIn 0.7s ease;
}

.timeline-img {
    width: 45%;
}

.timeline-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.team {
    background: #fff;
    text-align: center;
}

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

.team-member {
    padding: 20px;
    background: #f9f1e7;
    border-radius: 10px;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: scale(1);
}

.team-member img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.materials {
    display: flex;
    align-items: center;
    gap: 40px;
}

.materials img {
    width: 50%;
    height: 400px;
    object-fit: cover;
    animation: fadeIn 1s ease;
}

.materials-content {
    width: 50%;
    transform: translateX(20px);
    opacity: 0;
    animation: slideInRight 0.7s ease forwards;
}

.impact {
    background: #f9f1e7;
    text-align: center;
}

.impact-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.stat {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    animation: slideUp 0.5s ease;
}

.craft-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}

.craft-step {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.5s ease forwards;
}

.craft-step img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.vision {
    text-align: center;
    background: url('image/Serenity.jpeg') center/cover no-repeat;
    color: #fff;
    position: relative;
}

.vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.vision-content {
    position: relative;
    padding: 60px 0;
    animation: fadeInUp 1s ease;
}

/* Catalog Page Styles */
.featured {
    background: #fff;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}

.product-card {
    background: #f9f1e7;
    padding: 20px;
    border-radius: 10px;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.5s ease forwards;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.product-card h3 {
    margin: 15px 0;
}

.product-card .price {
    color: #d4a373;
    font-weight: 600;
    margin-bottom: 10px;
}

.flex{
    display: flex;
    align-items: center;
    gap: 40px;
}
.flex ul{
    list-style: none;
}
.flex img{
    width: 50%;
    border-radius: 10px;
}
.collections img {
    object-fit: cover;
    animation: fadeIn 1s ease;
}

.collections-content {
    width: 50%;
    transform: translateX(20px);
    opacity: 0;
    animation: slideInRight 0.7s ease forwards;
}

.tip {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    animation: slideUp 0.5s ease;
}


.slider {
    position: relative;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    position: relative;
}

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

.slide-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.5s ease forwards 0.3s;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.slider-nav button {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    padding: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-nav button:hover {
    background: #d4a373;
}

.care-guide {
    background: #fff;
}

.care-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.care-step {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f9f1e7;
    border-radius: 10px;
    animation: slideUp 0.5s ease;
}

.care-step img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

.testimonials {
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}

.testimonial {
    padding: 20px;
    background: #f9f1e7;
    border-radius: 10px;
    animation: slideUp 0.5s ease;
}

/* Shop by Room Page Styles */
.bedroom-hero {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #fff;
}

.bedroom-hero img {
    width: 50%;
    height: 400px;
    object-fit: cover;
    animation: fadeIn 1s ease;
}

.bedroom-hero-content {
    width: 50%;
    transform: translateX(20px);
    opacity: 0;
    animation: slideInRight 0.7s ease forwards;
}

.room-switcher {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.room-switcher button {
    background: none;
    border: 2px solid #d4a373;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    color: #2b2b2b;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.room-switcher button.active, .room-switcher button:hover {
    background: #d4a373;
    color: #fff;
}

.room-products {
    display: none;
}

.room-products.active {
    display: grid;
}

.mix-match {
    text-align: center;
    background: #fff;
}

.mix-match-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.mix-match-item {
    padding: 20px;
    background: #f9f1e7;
    border-radius: 10px;
    animation: slideUp 0.5s ease;
}

.mix-match-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

.seasonal {
    display: flex;
    align-items: center;
    gap: 40px;
}

.seasonal img {
    width: 50%;
    height: 400px;
    object-fit: cover;
    animation: fadeIn 1s ease;
}

.seasonal-content {
    width: 50%;
    transform: translateX(20px);
    opacity: 0;
    animation: slideInRight 0.7s ease forwards;
}

/* Privacy Policy and Terms & Conditions Styles */
.privacy-section, .terms-section {
    background: #fff;
    margin-bottom: 20px;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.5s ease forwards;
}

.privacy-section h2, .terms-section h2, .privacy-section h1, .terms-section h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #d4a373;
}

.privacy-section p, .terms-section p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.privacy-section ul, .terms-section ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 15px;
}

.privacy-section ul li, .terms-section ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.privacy-section ul li::before, .terms-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #d4a373;
    font-size: 1.2rem;
}

/* Thank You Page Styles */
.thank-you-section {
    background: #fff;
    height: 100vh;
    text-align: center;
}

.thank-you-section h1 {
    font-size: 2.5rem;
    color: #d4a373;
    margin-bottom: 20px;
}

.thank-you-section p {
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}
.section-top{
    padding-top: 130px;
}
h2, h1 {
    margin-bottom: 20px;
}
p{
    margin-bottom: 15px;
}
/* Responsive Design */
@media (max-width: 768px) {
    body {
        min-height: 100vh;
        display: block;
    }

    .nav-links {
        transform: translateX(100%);
        transition: transform 0.3s ease;
        position: fixed;
        top: 78.5px;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateX(0%);
    }

    .burger {
        display: block;
    }

    body.no-scroll {
        overflow: hidden;
    }

    .hero h1, .intro h1 {
        font-size: 2.5rem;
    }

    .story .container, .care-step , .materials, .flex, .collections, .bedroom-hero, .seasonal {
        flex-direction: column;
    }

    .story img, .flex img, .materials img, .collections img, .bedroom-hero img, .seasonal img,
    .story-content, .materials-content, .collections-content, .bedroom-hero-content, .seasonal-content {
        width: 100%;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item, .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-content, .timeline-img {
        width: 100%;
    }

    .dining-room-focus {
        grid-template-columns: 1fr;
    }

    .privacy-section h2, .terms-section h2, .privacy-section h1, .terms-section h1 {
        font-size: 1.5rem;
    }

    .thank-you-section h1 {
        font-size: 2rem;
    }

    .thank-you-section p {
        font-size: 1rem;
    }
    .container{
        padding: 0 10px;
    }
    .logo{
        font-size: 1.6rem;
    }
}