
 /* General Styles */
body {
    font-family: 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
  }
  
  /* Header */
  header {
    background: rgb(57, 56, 56);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .header-top {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #444;
    transition: all 0.3s ease;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .logo img {
    height: 70px;
  }
  
  .brand-name {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(45deg, #ff9a9e, #fad0c4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }
  
  .header-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    transition: all 0.3s ease;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  
  nav a {
    text-decoration: none;
    color: #eee;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s ease;
  }
  
  nav a:hover {
    color: #ff9a9e; /* Gradient color for hover */
  }
  
  .login-btn {
    background: black;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    transition: background 0.3s ease;
  }
  
  .login-btn:hover {
    background: #444;
  }
  
  /* On Scroll Effect */
  header.scrolled .header-top {
    opacity: 0;
    visibility: hidden;
    height: 0;
    padding: 0;
    border-bottom: none;
  }
  
  header.scrolled .header-bottom {
    justify-content: center;
  }
  
  header.scrolled .login-btn {
    position: absolute;
    right: 20px;
  }

  /* Add this to your CSS (swaahtry.css) */
/* Dropdown Menu Styles */
nav ul li.dropdown {
  position: relative;
}

nav ul li.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  opacity: 0;
  visibility: hidden;
  min-width: 200px;
  background: #333;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 5px;
  padding: 10px 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown-menu li {
  margin: 0;
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #fafafa !important;
  text-transform: none;
  font-size: 14px;
  transition: all 0.3s ease;S
 
}

.dropdown-menu a:hover {
  background: rgba(234, 233, 237, 0.05);
  color: #333 !important;
  padding-left: 25px;
}



/* Adjust existing nav styles to accommodate dropdown */
nav ul {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

nav a {
  text-decoration: none;
  color: #eee;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
  padding: 10px 0;
}
/* Hero Section */
.hero {
background: url('swaahfashion (6).gif') no-repeat center center/cover;

    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(201, 237, 250, 0.5);
}

.hero-text {
    position: relative;
    color: rgb(239, 238, 245);
}

.hero-text h1 {
    font-size: 50px;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 34px;
    margin-bottom: 20px;
}

.btn{
    background: #f0f0f0;
    padding: 10px 25px;
    color: white;
    text-decoration: none;
    font-size: 20px;
    border-radius: 5px;
    transition: all.3s ease-in-out;
    cursor: pointer;
}
.btn:hover.star-1{
    position: absolute;
    display: block;
    filter: drop-shadow(0 0 10px #12a3dd);
    z-index: 2;
}
.btn:hover.star-2{
    position: absolute;
    filter: drop-shadow(0 0 10px #12a3dd);
    z-index: 2;
}
/* Collections Section */
/* Collections Section */
.collections {
    text-align: center;
    padding: 60px 20px;
}

.collections h2 {
    font-size: 2.875rem; /* 46px */
    margin-bottom: 30px;
}

.collection-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #f0eaea;
}

.collection-item {
    background: #303435;
    border-radius: 15px;
    overflow: hidden;
    width: 400px;
    transition: transform 0.3s ease-in-out;
}

.collection-item:hover {
    transform: scale(1.05);
}

.collection-item img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.collection-item h3 {
    padding: 15px;
    color: #fff;
}
.story{
    background: url('gown2.JPG') no-repeat center center/cover;
    
        height: 50vh;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(135, 158, 166, 0.4);
    }
    
    .story-text {
        position: relative;
        color: rgb(8, 2, 32);
    }
    
    .story-text h1 {
        font-size: 80px;
        margin-bottom: 10px;
    }
    
    .story-text p {
        font-size: 29px;
        margin-bottom: 20px;
    }
    /* Slider Styles */
/* ===== Slider Styles ===== */
  /* ===== Optimized Slider ===== */
.slider {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.slides {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dots span.active {
    
    transform: scale(1.2);
}

/* ===== Simplified Carousel ===== */
.simple-carousel {
    position: relative;
    max-width: 800px;
    margin: 50px auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
}

.carousel-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.carousel-nav:hover {
    background: rgba(0,0,0,0.8);
}

.carousel-nav.prev {
    left: 15px;
}

.carousel-nav.next {
    right: 15px;
}

/* Your existing footer and other styles remain unchanged */

.video-section video {
    width: 100%;
    height: 900px;
  }

  /* Add this to your CSS (swaahtry.css) */
.fullwidth-image-section {
    width: 100%;
    margin: 60px 0;
    overflow: hidden;
}

.responsive-banner {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 80vh; /* Adjust height as needed */
}

/* Optional: Add hover effect */
.responsive-banner {
    transition: transform 0.5s ease;
}

.responsive-banner:hover {
    transform: scale(1.02);
}

  

/* Footer */
footer {
    background: #333;
    padding: 40px;
    text-align: center;
    text-decoration-color: #eee;
  }

  
  .footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    color: #e7e1e1;
  }
  .quick-links {
    color: #eae3e3;
    text-decoration-color: #ebe8e8;
  }
  .footer .quick-links a {
  --bs-link-color: #f9efef !important; 
}
  
  .social-media {
    color: #eee;
  }
  .newsletter input {
    padding: 10px;
    border: 1px solid #ccc;
  }
  
  .newsletter button {
    padding: 10px 20px;
    background: rgb(255, 254, 254);
    color: white;
    border: none;
    cursor: pointer;
  }
