*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Georgia', sans-serif;
}

body {
    background: #fbf2dd;
    color: #faf1dc;
}

/* ====================== NAVBAR ============================= */
.navbar{
    width:100%;
    position: relative;
    z-index: 9999;
    padding: 30px 45px;
    font-family:'Mulish', sans-serif;
}

.nav-container{
    max-width: 100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    font-family: 'Georgia', sans-serif;
    font-size:24px;
    font-weight:800;
}

.logo-grey{
    color: #cc9648;
}

.logo-orange{
    color: #cc9648;
}

.nav-menu{
    list-style:none;
    display:flex;
    gap: 50px;
}

.nav-menu a{
    text-decoration:none;
    color: #8d7b73;
    font-size:16px;
    font-family: 'Georgia', sans-serif;
    font-weight:600;
    position:relative;
    padding-bottom:5px;
}

.nav-menu a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:4px;
    background: #ff954f;
    transition:0.3s;
}

.nav-menu a:hover{
    color: #ff954f;
}

.nav-menu a:hover::after{
    width:100%;
}

.menu-toggle{
    display:none;
    font-size:22px;
    color:#8d7b73;
    cursor:pointer;
}

.social1{
    width: 65px; /* Ensure both buttons are the same size */
    height: 65px; 
    position: fixed;
    right: 10px;
    border-radius: 60%; /* Make it a perfect circle */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Add subtle shadow for better visibility */
    bottom: 30px;
    background: linear-gradient(45deg, rgb(35, 205, 20));
}
.social1 a{
    font-size: 2.6rem;
    color: #fff;
    text-decoration: none;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    padding: 40px 60px 80px;
    gap: 40px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 60px;
    color: #532418;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #592c1f;
}

.feature p {
    font-size: 15px;
    line-height: 1.6;
    color: #7a5a4a;
}

/* Image */
.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 200px 0 0 200px;
}

/* Products Section */
.products-section {
    padding: 70px 100px 90px;
}

.products-section h2 {
    font-size: 42px;
    margin-bottom: 40px;
   color: #532418; 
}

/* Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
}

/* Card */
.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.product-card a {
    display: inline-block;
    margin-top: 14px;
    font-size: 28px;
    font-weight: 500;
    color: #ff954f;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card:hover a {
    color: #cc9648;
}

/* Curtains Section */

.curtains-section {
    padding: 80px 110px 100px;
    max-width: 1300px;
}

.curtains-section h1 {
    font-size: 52px;
    margin-bottom: 50px;
    color: #532418;
}

/* Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 50px;
}

/* Content */
.info-box h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #592c1f;
}

.info-box p {
    font-size: 18px;
    line-height: 1.6;
    color: #7a5a4a;
}

/* Button */
.cta-btn {
    background: #ff9b4a;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 1em;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background: #e6863f;
}

/* Wallpaper Section */
.wallpapers-section {
    max-width: 1200px;
    padding: 80px 100px 100px;
}

.wallpapers-section h1 {
    font-size: 52px;
    margin-bottom: 50px;
    color: #532418;
}

/* Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 60px;
    margin-bottom: 40px;
}

/* Feature */
.feature-item {
    display: flex;
    gap: 20px;
}

.icon-box {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    border: 2px solid #f3d4b5;
    background: #fff8ee;
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #592c1f;
}

.feature-item p {
    font-size: 18px;
    line-height: 1.6;
    color: #7a5a4a;
}

/* Note */
.note {
    font-size: 18px;
    margin-bottom: 30px;
    color: #6a4a3a;
}

/* Button */
.cta-btn {
    background: #ff9b4a;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background: #e6863f;
}

/* Window Section */
.window-section {
    padding: 70px 100px 90px;
}

.window-section h2 {
    font-size: 42px;
    margin-bottom: 40px;
   color: #532418; 
}

/* Grid */
.windows-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
}

/* Card */
.window-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.window-card h4 {
    display: inline-block;
    margin-top: 14px;
    font-size: 28px;
    font-weight: 500;
    color: #6a4a3a;
    margin-bottom: 10px;
}

.window-card p {
    font-size: 18px;
    color: #7a5a4a;
    line-height: 1.6;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card:hover a {
    color: #cc9648;
}

/* mattress section */

:root {
  --bg-color: #faf7f2;
  --card-border: #f1d5c9;
  --title-color: #6b3a2c;
  --text-color: #5f5f5f;
}

.mattress-section {
  background-color: #e6e6e6;
  padding: 2rem 1rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  border: 4px solid white;
  background-color: #fff;
  border-radius: 10px;
  width: 100%;
  height: auto;
  padding: 50px 50px 60px;
}

.title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #532418;
  margin-bottom: 2.5rem;
}

.card-grid1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.card1 {
  border: 2px solid var(--card-border);
  padding: 1.75rem;
  border-radius: 6px;
  background-color: transparent;
}

.card1 h2 {
  color: #592c1f;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.card1 p,
.card1 li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #7a5a4a;
}

.card1 ul {
  padding-left: 1.2rem;
}

.card1 li {
  margin-bottom: 0.5rem;
}

.sleep-img {
    width: 100%;
    margin-top: 1em;
     text-align: center;
}

.sleep-img img {
    width: 70vw;
    height: 70vh;
    border-radius: 6px;
}

.mat-btn {
    background: #ff9b4a;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 1em;
    transition: background 0.3s ease;
}

.mat-btn:hover {
    background: #e6863f;
}

/* Tablet */
@media (min-width: 768px) {
  .card-grid1 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .mattress-section {
    padding: 4rem 2rem;
  }

  .card1 {
    padding: 2rem;
  }
}

/* Upholstery Section */
.upholstery {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
}

/* Text content */
.content {
    max-width: 800px;
    line-height: 1.6;
}

.content h1 {
    font-size: 3rem;
    color: #6b3f2a;
    margin-bottom: 1rem;
}

.content p {
    font-size: 1.05rem;
    color: #7a6a5b;
}

/* Image */
.image-wrapper {
    margin-top: 2.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .upholstery {
        padding: 4rem 2rem 5rem;
    }

    .content h1 {
        font-size: 3.5rem;
    }

    .content p {
        font-size: 1.1rem;
    }
}

@media (min-width: 1024px) {
    .content {
        max-width: 900px;
    }

    .image-wrapper {
        margin-top: 3rem;
    }
}

/* bed Section */
.bed-bath {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
}

/* Heading */
.bed-bath h1 {
    font-size: 3rem;
    color: #6b3f2a;
    margin-bottom: 2.5rem;
}

/* Card grid */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* Cards */
.card {
    background-color: #fbf7ea;
    border: 1px solid #f1d8c5;
    border-radius: 8px;
    padding: 1.75rem;
}

.card h2 {
    font-size: 1.4rem;
    color: #6b3f2a;
    margin-bottom: 0.75rem;
}

.card p {
    font-size: 1rem;
    color: #7a6a5b;
}

/* Image */
.image-wrapper {
    margin-top: 3rem;
    border-radius: 8px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Tablet */
@media (min-width: 768px) {
    .bed-bath h1 {
        font-size: 3.4rem;
    }

    .card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .bed-bath {
        padding: 4rem 2rem 5rem;
    }

    .card {
        padding: 2rem;
    }
}

/* bg design Section */
.design-services {
    max-width: 1300px;
    margin: 0 auto;
    padding: 4rem 1.5rem 5rem;
    background-image: url("../images/img26.avif");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* Heading */
.design-services h1 {
    font-size: 3rem;
    color: #6b3f2a;
    margin-bottom: 3rem;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

/* Service block */
.service {
    position: relative;
    padding-left: 3rem;
    max-width: 360px;
}

/* Number badge */
.number {
    position: absolute;
    left: 0;
    top: 0.25rem;
    width: 32px;
    height: 32px;
    border: 1px solid #e5b89b;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b3f2a;
    font-weight: bold;
    font-size: 1rem;
}

/* Titles */
.service h2 {
    font-size: 1.35rem;
    color: #6b3f2a;
    margin-bottom: 0.5rem;
}

/* Text */
.service p {
    font-size: 1rem;
    color: #592c1f;
}

/* Tablet */
@media (min-width: 768px) {
    .design-services h1 {
        font-size: 3.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }

    .service {
        padding-left: 3.5rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .design-services {
        padding: 5rem 2rem 6rem;
    }
}

/* home decor Section */
.home-decor {
    padding: 4rem 3rem 6rem;
    line-height: 1.6;
}

.containers {
    max-width: 1200px;
    margin: 0 auto;
}

/* Heading */
.home-decor h1 {
    font-size: 3rem;
    color: #6b3f2a;
    margin-bottom: 1.5rem;
}

/* Description */
.description {
    max-width: 900px;
    font-size: 1.05rem;
    color: #7a6a5b;
    margin-bottom: 1rem;
}

/* Grid */
.decor-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Items */
.decor-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

.decor-item h3 {
    margin-top: 1rem;
    font-size: 1.4rem;
    color: #6b3f2a;
}

/* Tablet */
@media (min-width: 768px) {
    .home-decor h1 {
        font-size: 3.5rem;
    }

    .decor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .decor-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .home-decor {
        padding: 5rem 2rem 6rem;
    }
}


/* sofa Section */
.custom-sofa {
    padding: 4rem 1.5rem 5rem;
    line-height: 1.6;
}

.container1 {
    max-width: 1200px;
    margin: 0 auto;
}

/* Heading */
.custom-sofa h1 {
    font-size: 3rem;
    color: #6b3f2a;
    margin-bottom: 1rem;
}

/* Intro text */
.intro {
    max-width: 800px;
    font-size: 1.05rem;
    color: #7a6a5b;
    margin-bottom: 3rem;
}

/* Features grid */
.features1 {
    display: grid;
    grid-template-columns: 4fr;
    gap: 2.5rem;
}

/* Feature item */
.feature1 {
    max-width: 260px;
}

.icon {
    font-size: 2rem;
    color: #f2994a;
    margin-bottom: 1rem;
}

.icon svg {
    height: 40px;
    width: 28px;
}

.feature1 h3 {
    font-size: 1.35rem;
    color: #6b3f2a;
    margin-bottom: 0.75rem;
}

.feature1 p {
    font-size: 1rem;
    color: #7a6a5b;
}

/* Image */
.image-wrapper {
    margin-top: 3.5rem;
    border-radius: 10px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Tablet */
@media (min-width: 768px) {

    .custom-sofa h1 {
        font-size: 3.5rem;
    }

    .features1 {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .features1 {
        grid-template-columns: repeat(4, 1fr);
    }

    .custom-sofa {
        padding: 5rem 2rem 6rem;
    }
}

/* home visit section */
.home-visit {
    padding: 3rem 1.5rem;
}

.container2 {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

/* Illustration */
.illustration img {
    width: 100%;
    height: auto;
}

/* Content */
.content h1 {
    font-size: 2.4rem;
    color: #532418;
    margin-bottom: 2rem;
}

.features2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature2 {
    background: transparent;
}

.feature2 img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.feature2 h3 {
    font-size: 1.1rem;
    color: #592c1f;
    margin-bottom: 0.5rem;
}

.feature2 p {
    font-size: 0.95rem;
    color: #7a5a4a;
    line-height: 1.5;
}

/* CTA */
.cta {
    display: inline-block;
    background-color: #e6863f;
    color: var(--white);
    text-decoration: none;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta:hover {
    background-color: #e88847;
}

/* Responsive */
@media (max-width: 992px) {
    .container2 {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .features2 {
        grid-template-columns: 1fr;
    }

    .illustration {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .features2 {
        text-align: center;
    }
}


/* contact */
.contact {
    padding: 3rem 1.5rem;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Left */
.contact-left h1 {
    font-size: 2.5rem;
    color: #532418;
    margin-bottom: 2rem;
}

.info-grid1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-card {
    background: #fff7ec;
    border: 2px solid  #f0d9c3;
    padding: 1.5rem;
    border-radius: 10px;
}

.info-card h3 {
    margin-bottom: 0.5rem;
    color: #592c1f;
}

.info-card p {
    color: #7a5a4a;
    margin-bottom: 0.3rem;
}

.info-card a {
    color: #ff9a57;
    text-decoration: none;
    font-weight: 600;
}

/* Message */
.message-card {
    background: #fff7ec;
    border: 2px solid #f0d9c3;
    padding: 1.8rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
}

.message-card h3 {
    margin-bottom: 0.5rem;
    color: #592c1f;
}

.message-card p {
    color: #7a5a4a;
    margin-bottom: 1rem;
}

.message-card button {
    background: #ff9a57;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

/* Social */
.social h2 {
    color:  #4b2e1f;
    margin-bottom: 1.2rem;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.social-links div span {
    font-size: 1.5rem;
}

.social-links p {
    font-size: 1rem;
    color: #4b2e1f
}

/* Right */
.contact-right {
    text-align: center;
}

.contact-right img {
    width: 100%;
    max-width: 420px;
}

.caption {
    margin-top: 1rem;
}

.caption span {
    font-style: italic;
    color: #7a5a4a;
}

.caption strong {
    display: block;
    letter-spacing: 1px;
    color: #532418;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .info-grid1,
    .social-links {
        grid-template-columns: 1fr;
    }

    .contact-right {
        order: -1;
    }
}



/* ==================== Responsive Screens ============================*/

@media (max-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

     .windows-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .hero-image img {
        border-radius: 200px 0 0 200px;
    }
}

@media(max-width:768px){ 
    .navbar{
    padding: 20px 15px;
}

.logo{
    font-size:20px;
}
.menu-toggle{
    display:block;
}
.nav-menu{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    align-items:center;
    gap:20px;
    padding:20px 0;
    display:none;
    border-top: 1px solid #eee;
}

.nav-menu.active{
    display:flex;
}

 .hero-content h1 {
        font-size: 30px;
    }

        .products-section {
        padding: 50px 30px;
    }

    .products-section h2 {
        font-size: 34px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

     .window-section {
        padding: 50px 30px;
    }

    .window-section h2 {
        font-size: 34px;
    }

    .windows-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .sleep-img img {
        width: 100%;
        height: 50vh;
    }

}

@media(max-width:480px){ 
    .navbar{
    padding: 20px 10px;
}

.logo{
    font-size: 12px;
}

 .container1 {
        text-align: center;
        justify-content: center;
    }

.hero-content h1 {
    font-size: 25px;
}

 .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card img {
        height: 220px;
    }

    .windows-grid {
        grid-template-columns: 1fr;
    }

    .window-card img {
        height: 220px;
    }

    .sleep-img img {
        width: 100%;
        height: 50vh;
    }

    .features1 {
        text-align: center;
        align-items: center;
    }

}

/* Curtain Responsive */
@media (max-width: 900px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .curtains-section h1 {
        font-size: 42px;
    }

     .features-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .wallpapers-section h1 {
        font-size: 42px;
    }
}

@media (max-width: 500px) {
    .curtains-section {
        padding: 60px 30px;
    }

    .curtains-section h1 {
        font-size: 36px;
    }

     .wallpapers-section {
        padding: 60px 30px;
    }

    .wallpapers-section h1 {
        font-size: 36px;
    }

    .feature-item {
        gap: 15px;
    }
}
