/* ================= Global Styles ================= */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Include padding and border in element's total width/height */
}

/* ================= Body / Background ================= */
.body{
    height: cover; /* Full height (not a valid CSS unit, consider using 100vh) */
    width: cover;  /* Full width (not a valid CSS unit, consider using 100%) */
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #0d0d0d 75%, #000000 100%);
    background-repeat:initial;
}

/* ================= Navbar ================= */
.navbar .logo img {
    height: 50px;
    width: 200px;
    max-width: 400px;
    padding-top: 3px;
    padding-left: 15px;
}

.navbar {
    height: 80px;
    display: flex;
    position: fixed; /* Navbar stays at top */
    justify-content: space-between;
    backdrop-filter: none;
    filter: none;
    align-items: center;
    background-color: #000000;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300; /* Ensure navbar is above other content */
}

.navbar .fetures{
    height: 50px;
    width: 150px;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
} 

.navbar .fetures .img{
    align-items: center;
    row-gap: 20px;
}

/* ================= Navigation Links ================= */
nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
    text-align: right;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 25px;
    border: 2px solid transparent;
}

nav ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-2px); /* Slight lift effect on hover */
}

/* ================= Container ================= */
.container{
    max-width: auto;
    margin:auto;
}

/* ================= Main Content ================= */
.main-content{
    width: 100%;
    height: 950px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #0d0d0d 75%, #000000 100%);
    background-repeat:initial;
    display: flex;
    min-height: calc(100vh - 100px);
    padding-top: px; /* Possibly incomplete, no value set */
}

/* ================= Carousel Section ================= */
.carousel-section {
    width: 100%;
    background-color: white;
    height: 340px;
    display: flex;
    justify-content: auto; /* auto is not valid for justify-content */
    top: 60px; 
    width: 100%;
    position: relative;
}

.carousel-container {
    perspective: 1200px; /* 3D effect perspective */
    width: 1000px;
    height: 340px;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    padding-left: 400px; 
}

.carousel-section .logo{
    position: flex; /* Not valid property */
    height: auto;    
    width: auto;
    padding-left: 20px;            
}

/* ================= Carousel Items ================= */
.carousel {
    position: relative;
    width: 150px;
    height: 150px;
    transform-style: preserve-3d; /* Enables 3D transform for children */
    animation: rotate 20s infinite linear; /* Continuous rotation */
}

.carousel-item {
    position:absolute;
    width: 150px;
    height: 150px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-item img { 
    width: 100%;
    height: 100%;
    left: 200px; /* Possibly unnecessary */
    right: 200px; /* Possibly unnecessary */
    object-fit: cover; /* Cover the container while maintaining aspect ratio */
    display: flex;
}

/* ================= Introduction Text ================= */
.main-content .Introduction{
    width: 1900px;
    height: 500px;
    color: #ffffff;
    font-size: 21px;       
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;  
    position: absolute;      
    top: 400px;                
    padding-left: 100px;
    padding-right:100px;             
    text-align: center;    
    line-height: 1.5;        
}

/* ================= Buttons ================= */
.shop-now-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ccc 0%, #fff 100%);
  color: #000;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

.shop-now-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,255,255,0.3);
  background: linear-gradient(135deg, #fff 0%, #ccc 100%);
}

/* ================= Buy One Get One Section ================= */
.bogo-section {
  width: 100%;
  background: linear-gradient(135deg, #000, #111);
  color: #fff;
  padding: 40px 20px; /* Padding around section */
  display: flex;
  justify-content: center;
  align-items: center;
}

.bogo-container {
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.bogo-text {
  flex: 1 1 400px;
  text-align: left;
}

.bogo-text h2 {
  font-size: 2rem; /* Heading size */
  color: #fff;
  margin-bottom: 10px;
}

.bogo-text h2 span {
  color: #ff0000; /* Highlight text in red */
  font-weight: bold;
}

.bogo-text p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 20px;
}

.bogo-btn {
  display: inline-block;
  background: linear-gradient(135deg, #fff, #aaa);
  color: #000;
  padding: 8px 18px; /* Button padding */
  border-radius: 25px;
  font-weight: bold;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.bogo-btn:hover {
  background: linear-gradient(135deg, #aaa, #fff);
  transform: translateY(-3px);
  box-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.bogo-image {
  flex: 1 1 350px;
  text-align: center;
}

.bogo-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(255,255,255,0.1);
  transition: transform 0.4s ease;
}

.bogo-image img:hover {
  transform: scale(1.03);
}

/* ================= Responsive for Mobile ================= */
@media (max-width: 768px) {
  .bogo-container {
    flex-direction: column;
    text-align: center;
  }

  .bogo-text h2 {
    font-size: 1.6rem;
  }

  .bogo-image img {
    max-width: 85%;
  }
}

/* ================= Product Grid ================= */
.products {
  width: 100%;
  height: 400px;
  background-color: rgb(255, 255, 255);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
}

/* ================= Product Cards ================= */
.product {
  background-color: rgb(182, 10, 10);
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  cursor: pointer;
  min-width: 200px;
  margin-right: 20px;
}

.product img {
  width: 100%;
  display: block;
  border-radius: 25px;
  transition: transform 0.5s ease;
}

.product:hover img {
  transform: scale(1.1); /* Zoom effect */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0; /* Hidden initially */
  transition: opacity 0.4s ease;
  padding: 20px;
  text-align: center;
}

.product:hover .overlay {
  opacity: 1; /* Show overlay on hover */
}

/* ================= Product Badge ================= */
.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, 
}

/* ================= Promo Cards ================= */
.promo-container {
    display: flex;
    justify-content: flex-start;
    margin: 0 auto;
    gap: 20px;
}

.promo-card {
    width: 500px;
    height: 600px;
    position: relative;
    border: 1px solid #ccc;
    background-color: #000;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.promo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    position: absolute;
    top: 0;
    left: 0;
}

.promo-heading {
    font-size:30px;
    margin-bottom: 10px;
    color: #fff;
}

.highlight {
    font-weight: bold;
    text-transform: uppercase;
}

.promo-description {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 20px;
}

.promo-text-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1;
    text-align: left;
}

.shop-now-link {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    border: 1px solid #ccc;
    padding: 5px 10px;
    transition: color 0.3s, background-color 0.3s;
}

.shop-now-link:hover {
    background-color: #ccc;
    color: #000;
}

/* ================= Contact Section ================= */
.contact-section {
    background-color: #000;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #ccc;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-info, .contact-form, .contact-social {
    flex: 1;
    min-width: 250px;
}

.contact-info h3, .contact-form h3, .contact-social h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.contact-info p {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 10px;
}

.contact-info strong {
    color: #fff;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #333;
    color: #fff;
    border-radius: 5px;
}

.contact-form textarea {
    height: 100px;
    resize: vertical;
}

.contact-form button {
    padding: 10px;
    background-color: #ccc;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #fff;
}

.contact-social .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.contact-social a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.contact-social a:hover {
    color: #fff;
}

.footer-note {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #ccc;
}

/* ================= Carousel 3D Rotation ================= */
.carousel-item:nth-child(1) {
    transform: rotateY(0deg) translateZ(400px) rotateX(0deg) ;
}

.carousel-item:nth-child(2) {
    transform: rotateY(36deg) translateZ(400px) rotateX(0deg) ;
}

.carousel-item:nth-child(3) {
    transform: rotateY(72deg) translateZ(400px) rotateX(0deg) ;
}

.carousel-item:nth-child(4) {
    transform: rotateY(108deg) translateZ(400px) rotateX(0deg) ;
}

.carousel-item:nth-child(5) {
    transform: rotateY(144deg) translateZ(400px) rotateX(0deg) ;
}

.carousel-item:nth-child(6) {
    transform: rotateY(180deg) translateZ(400px) rotateX(0deg) ;
}

.carousel-item:nth-child(7) {
    transform: rotateY(216deg) translateZ(400px) rotateX(0deg) ;
}

.carousel-item:nth-child(8) {
    transform: rotateY(252deg) translateZ(400px) rotateX(0deg) ;
}

.carousel-item:nth-child(9) {
    transform: rotateY(288deg) translateZ(400px) rotateX(0deg) ;
}

.carousel-item:nth-child(10) {
    transform: rotateY(324deg) translateZ(400px) rotateX(0deg) ;
}

/* ================= Keyframes ================= */
@keyframes rotate {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}
