/* General Page Styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Header */
header {
  text-align: center;
  background: #a0522d;
  padding: 20px;
}
header .logo {
  width: 100px;
}
nav {
  background: #fff;   /* White background */
  text-align: center;
  padding: 10px;
  border-bottom: 1px solid #ddd; /* thin line for style */
}

nav a {
  color: #333;   /* dark text */
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #ff6600;  /* orange highlight */
}
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 50px;
  background: #faf0e6;
}
.hero button {
  padding: 10px 20px;
  background: #333;
  color: white;
  border: none;
  cursor: pointer;
}
.hero button:hover {
  background: #555;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 20px;
}

/* Product Card */
.product {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Product Image */

}

/* Product Text */
.product p {.product img {
  width: 100%;          /* fill the product card width */
  height: 250px;        /* force equal height for all */
  object-fit: cover;    /* crop the extra part instead of squeezing */
  border-radius: 5px;
}
  margin: 10px 0;
  min-height: 40px;  /* keeps text aligned */
}

/* Buy Button */
.buy-btn {
  display: inline-block;
  padding: 10px 15px;
  background: #e65c00;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}

.buy-btn:hover {
  background: #c94f00;
}

/* Shop Now button (same style as Buy Now) */
.shop-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #e65c00;   /* Orange color */
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: background 0.3s;
}

.shop-btn:hover {
  background: #c94f00;   /* Darker orange on hover */
}
/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 10px;
}/* Slider Section */
.slider {
  position: relative;
  width: 100%;
  height: 60vh;       /* 60% of screen height (less zoom) */
  margin: 0 auto;
  overflow: hidden;
}

.slides {
  display: flex;
  width: 100%;         /* 3 images, adjust if you add more */
  height: 100%;
  animation: slide 12s infinite;

.slides img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* Show full image without cutting */
  background: #000;      /* Adds black bars if image ratio doesn’t fit */
}
}

/* Slider Animation */
@keyframes slide {
  0%   { transform: translateX(0%); }
  33%  { transform: translateX(-100%); }
  66%  { transform: translateX(-200%); }
  100% { transform: translateX(0%); }
}

/* Text on slider */
.slider-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.9);
}

.slider-text h2 {
  font-size: 3rem;     /* Bigger text for full screen */
  margin-bottom: 15px;
}

.slider-text button {
  padding: 14px 28px;
  background: #ff6600;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  border-radius: 5px;
}

.slider-text button:hover {
  background: #e65c00;
}

/* About Us Section - 2 Column Layout */
.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

.about-text {
  flex: 1;
  text-align: left;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-text {
    text-align: center;
  }
}
/* Logo Styling */
.logo {
  width: 120px;   /* change size as needed */
  height: auto;
  display: block;
  margin: 0 auto 10px auto;  /* center the logo above text */
}
/* Contact Page */
.contact-page {
  max-width: 800px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
  line-height: 1.8;
}

.contact-page h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.contact-page p {
  font-size: 1.1rem;
  color: #555;
}
/* Fix product images - make all same shape */
.product img {
  width: 100% !important;     /* full width of card */
  height: 220px !important;   /* same fixed height */
  object-fit: cover !important;  /* crop nicely */
  border-radius: 5px;
  display: block;
}
/* Force all product images to same size */
.product img {
  width: 100% !important;
  aspect-ratio: 4 / 3;   /* keeps all images same rectangle shape */
  object-fit: cover !important;
  border-radius: 5px;
  display: block;
}
/* Header Layout */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #8B4513; /* Dark brown */
  color: #fff;
  padding: 15px 50px;
}

.header-left,
.header-center,
.header-right {
  flex: 1;
  text-align: center;
}

.header-left {
  text-align: left;
  font-weight: bold;
}

.header-right {
  text-align: right;
}
/* Round Social Icon Buttons */
.icon-btn {
  margin-left: 12px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 30px;   /* 🔹 this controls icon size */
  transition: transform 0.2s, background 0.3s;
}

.icon-btn:hover {
  transform: scale(1.15);
}

.social-icons {
  margin-top: 20px;
}
}

.social-icons .icon-btn {
    display: inline-block;
    margin: 0 10px;
    padding: 10px 15px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* WhatsApp green */
.social-icons .whatsapp {
    background: #25D366;
}

/* Facebook blue */
.social-icons .facebook {
    background: #1877F2;
}

/* Instagram pink */
.social-icons .instagram {
    background: #E4405F;
}.hero-section {
  display: flex;
  justify-content: center;   /* keeps it centered */
  align-items: center;
  width: 100%;
}

.hero-section img {
  max-width: 100%;   /* adjust % for how much space it takes */
  height: auto;
  border-radius: 15px;  /* keeps your rounded corner look */
  display: block;
}img {
  width: 100%;
  height: auto;
  display: block;
}.hero-header {
  background-image: url("images/bedsheet104.jpg"); /* use your bedsheet image */
  background-size: cover;       /* fills full area */
  background-position: center;  /* keep center focus */
  height: 100vh;                /* full screen height; change to 500px if you want smaller banner */
  width: 100%;                  /* full screen width */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;                 /* text color */
  position: relative;
}

.overlay {
  padding: 20px;
  border-radius: 8px;
}

.hero-header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-header p, 
.hero-header h2 {
  font-size: 1.2rem;
  margin: 5px 0;
}.overlay {
  position: absolute;
  top: 0px;          /* move 1 inch higher */
  left: 40px;         /* push to left side */
  text-align: left;   /* align all text to left */
  color: black;       /* keep readable, change to white if background is dark */
}

.overlay h1,
.overlay h2,
.overlay p {
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4); /* optional: soft shadow for readability */
}
 .hero-header {
  position: relative;
  width: 100%;
  height: 100vh; /* full screen height */
  overflow: hidden;
}
