/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 300;
    color: #1a202c;
    background-color: #fff;
    min-height: 100vh;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 300;
  }
  
  /* Utilities */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .text-center {
    text-align: center;
  }
  
  /* Navigation */
  .nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    background-color: rgba(110, 104, 89, 0.5);
    color:rgb(255, 255, 255);
  }
  
  .nav-brand {
    font-size: 1.5rem;
    font-weight: 200;
    letter-spacing: 0.1em;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-links a {
    margin: 0 1.5rem;
    font-weight: 200;
    letter-spacing: 0.05em;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: #e9e27f;
  }
  
  .nav-right {
    display: flex;
    align-items: center;
  }
  
  .nav-right > * {
    margin-left: 1.5rem;
  }
  
  .lang-switcher {
    display: flex;
    align-items: center;
    font-weight: 200;
  }
  
  .lang-switcher span {
    margin-left: 0.25rem;
    font-size: 0.875rem;
    text-transform: uppercase;
  }
  
  .mobile-menu-btn {
    font-size: 1.5rem;
  }
  
  .mobile-menu {
    position: fixed;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 50;
    padding: 1.5rem;
    display: none;
  }
  
  .mobile-menu-close {
    display: flex;
    justify-content: flex-end;
    font-size: 1.5rem;
  }
  
  .mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 90%;
  }
  
  .mobile-menu-content a {
    margin: 1rem 0;
    font-size: 1.25rem;
    font-weight: 200;
    letter-spacing: 0.1em;
  }
  
  .mobile-lang-switcher {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    font-weight: 200;
  }
  
  .mobile-lang-switcher span {
    margin-left: 0.5rem;
    font-size: 1.125rem;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
  }
  
  .hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #dbeafe, #fffbeb);
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* background: linear-gradient(135deg, rgba(100,181,246,0.3) 0%, rgba(255,224,130,0.2) 100%); */
    /* background-image: url("img/index/logo.png"); */
  }

  .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This makes the image cover the entire container */
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    border: 1px solid black;
    /* backdrop-filter: blur(4px); */
    /* background-color: rgba(138, 136, 130, 0.5); */
    padding: 15px;
  }
  
  .hero-title {
    font-size: 3rem;
    font-weight: 200;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    /* color:rgb(0, 0, 0); */
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
    font-weight: 200;
    letter-spacing: 0.05em;
    margin-bottom: 2.5rem;
    max-width: 40rem;
    color:rgb(255, 255, 255);
  }
  
  .hero-btn {
    border: 1px solid #ffffff;
    color: #b8b8b8;
    padding: 0.75rem 2.5rem;
    font-weight: 200;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    color:rgb(255, 255, 255);
  }
  
  .hero-btn:hover {
    background-color: #91906a;
    color: white;
  }
  
  /* Collections Section */
  .collections-section {
    padding: 5rem 2rem;
  }
  
  .section-title {
    font-size: 1.875rem;
    font-weight: 200;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .collection-group {
    margin-bottom: 4rem;
    position: relative;
  }
  
  .collection-title {
    font-size: 1.5rem;
    font-weight: 200;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
  }
  
  .collection-row {
    display: flex;
    overflow-x: auto;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
  }
  
  /* Scrollbar Styling */
  .custom-scrollbar::-webkit-scrollbar {
    height: 6px;
    width: 6px;
  }
  
  .custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(243, 244, 246, 0.5);
    border-radius: 10px;
  }
  
  .custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(209, 213, 219, 0.7);
    border-radius: 10px;
  }
  
  .custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(156, 163, 175, 0.8);
  }
  
  .custom-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: rgba(209, 213, 219, 0.7) rgba(243, 244, 246, 0.5);
  }
  
  .collection-item {
    flex: 0 0 auto;
    width: 8rem;
    margin-right: 0.5rem;
    cursor: pointer;
  }
  
  .dress-image {
    height: 13rem;
    background-color: #eff6ff;
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
  }
  
  .dress-bg {
    width: 100%;
    height: 100%;
    background-color: #dbeafe;
    transition: all 0.7s;
  }
  
  .collection-item:hover .dress-bg {
    transform: scale(1.05);
    filter: brightness(1.1);
  }
  
  .dress-name-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
  }
  
  .dress-name-overlay span {
    font-size: 0.75rem;
    font-weight: 300;
    text-align: center;
  }
  
  .dress-name {
    font-size: 0.75rem;
    font-weight: 300;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .view-all {
    display: inline-flex;
    align-items: center;
    font-weight: 300;
    margin-top: 1.5rem;
  }
  
  .view-all:hover {
    color: #3b82f6;
  }
  
  .view-all span {
    margin-right: 0.25rem;
  }
  
  /* Scroll Arrows */
  .scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
    z-index: 2;
  }
  
  .scroll-arrow:hover {
    opacity: 1;
  }
  
  .scroll-left {
    left: 10px;
  }
  
  .scroll-right {
    right: 10px;
  }
  
  /* Featured Dresses Section */
  .featured-section {
    padding: 5rem 2rem;
    background-color: rgba(239, 246, 255, 0.3);
  }
  
  .featured-container {
    position: relative;
  }
  
  .featured-row {
    display: flex;
    overflow-x: auto;
    padding-bottom: 2rem;
  }
  
  .featured-item {
    flex: 0 0 auto;
    width: 10rem;
    margin-right: 0.5rem;
    background-color: white;
    overflow: hidden;
    transform: translateY(0);
    transition: transform 0.3s;
  }
  
  .featured-item:hover {
    transform: translateY(-0.25rem);
  }
  
  .featured-image {
    height: 16rem;
    background-color: #fffbeb;
    position: relative;
    overflow: hidden;
  }
  
  .featured-bg {
    width: 100%;
    height: 100%;
    background-color: #fef3c7;
    transition: all 0.7s;
  }
  
  .featured-item:hover .featured-bg {
    transform: scale(1.05);
    filter: brightness(1.1);
  }
  
  .featured-details {
    padding: 0.75rem;
  }
  
  .featured-name {
    font-size: 0.875rem;
    font-weight: 200;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .featured-price {
    font-size: 0.75rem;
    font-weight: 300;
    color: #374151;
  }
  
  .view-all-btn {
    border: 1px solid #1a202c;
    color: #1a202c;
    padding: 0.75rem 2.5rem;
    font-weight: 200;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    display: block;
    margin: 3rem auto 0;
  }
  
  .view-all-btn:hover {
    background-color: #1a202c;
    color: white;
  }
  
  /* About Section */
  .about-section {
    padding: 5rem 2rem;
  }
  
  .about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .about-image {
    width: 100%;
    margin-bottom: 4rem;
    position: relative;
  }
  
  .designer-portrait {
    width: 100%;
    height: 24rem;
    background-color: #dbeafe;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .designer-portrait span {
    font-size: 1.25rem;
    font-weight: 300;
  }
  
  .image-border {
    position: absolute;
    inset: 0;
    border: 1px solid #fef08a;
    transform: translate(1rem, 1rem);
  }
  
  .about-content {
    width: 100%;
  }
  
  .about-title {
    font-size: 1.875rem;
    font-weight: 200;
    letter-spacing: 0.1em;
    margin-bottom: 2.5rem;
  }
  
  .about-text {
    font-weight: 300;
    color: #1f2937;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  
  .about-text:last-of-type {
    margin-bottom: 3rem;
  }
  
  .read-more-btn {
    border: 1px solid #1a202c;
    color: #1a202c;
    padding: 0.75rem 2.5rem;
    font-weight: 200;
    letter-spacing: 0.1em;
    transition: all 0.3s;
  }
  
  .read-more-btn:hover {
    background-color: #1a202c;
    color: white;
  }
  
  /* Newsletter Section */
  .newsletter-section {
    padding: 5rem 2rem;
    background-color: rgba(239, 246, 255, 0.2);
  }
  
  .newsletter-container {
    max-width: 36rem;
    margin: 0 auto;
    text-align: center;
  }
  
  .newsletter-title {
    font-size: 1.5rem;
    font-weight: 200;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
  }
  
  .newsletter-text {
    font-weight: 300;
    color: #1f2937;
    margin-bottom: 2.5rem;
  }
  
  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 24rem;
    margin: 0 auto;
  }
  
  .newsletter-input {
    flex-grow: 1;
    padding: 0.75rem 1.25rem;
    border: 1px solid #d1d5db;
    font-weight: 200;
    transition: border-color 0.3s;
  }
  
  .newsletter-input:focus {
    outline: none;
    border-color: #1a202c;
  }
  
  .newsletter-btn {
    background-color: white;
    border: 1px solid #1a202c;
    color: #1a202c;
    padding: 0.75rem 2rem;
    font-weight: 200;
    letter-spacing: 0.1em;
    transition: all 0.3s;
  }
  
  .newsletter-btn:hover {
    background-color: #1a202c;
    color: white;
  }
  
  /* Footer Section */
  .footer {
    padding: 4rem 2rem;
    background-color: white;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  
  .footer-brand {
    font-size: 1.25rem;
    font-weight: 200;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
  }
  
  .footer-tagline {
    font-weight: 300;
    color: #1f2937;
    max-width: 20rem;
  }
  
  .footer-col-title {
    font-weight: 200;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
  }
  
  .footer-links {
    list-style: none;
  }
  
  .footer-links li {
    margin-bottom: 0.75rem;
  }
  
  .footer-links a {
    font-weight: 300;
    color: #1f2937;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #3b82f6;
  }
  
  .footer-social {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .footer-social a {
    color: #1f2937;
    transition: color 0.3s;
  }
  
  .footer-social a:hover {
    color: #3b82f6;
  }
  
  .footer-email {
    font-weight: 300;
    color: #1f2937;
  }
  
  .footer-copyright {
    border-top: 1px solid #e5e7eb;
    margin-top: 4rem;
    padding-top: 2.5rem;
    color: #4b5563;
    font-size: 0.875rem;
    font-weight: 300;
  }