﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Font Family Definitions */
@import url('https://fonts.cdnfonts.com/css/selima');
@import url('https://fonts.cdnfonts.com/css/signature-moonline');

.selima-font {
    font-family: 'Selima', serif;
    letter-spacing: 0.05em;
}

.signature-font {
    font-family: 'Signature Moonline', cursive;
    letter-spacing: 0.02em;
}

.luxury-font {
    font-family: 'Cormorant Garamond', serif;
}

.modern-font {
    font-family: 'Montserrat', sans-serif;
}

.playfair-font {
font-family: 'Playfair Display', serif;
}

.inter-font {
  font-family: 'Inter', sans-serif;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
    color: #1f2937;
    overflow-x: hidden;
    line-height: 1.6;
}

/* === HERO SECTION WITH IMAGE BACKGROUND === */
.hero-section {
    width: 100vw;
    height: 100vh;
    position: relative;
    background-image: url('/img/bdacb465-98da-421b-afdb-69fe34f90ad2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* REMOVED: White overlay - image now displays clearly */
.hero-section::before {
    content: none;
}

/* Hero Overlay - removed for backward compatibility */
.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    pointer-events: none;
}

.logo-text {
    font-family: 'Selima', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    letter-spacing: 0.2em;
    color: #1f2937;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 
                 0 0 40px rgba(0, 0, 0, 0.5),
      -1px -1px 2px rgba(255, 255, 255, 0.3);
}

.hero-subtitle {
    font-family: 'Signature Moonline', cursive;
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: #DC2626;
    letter-spacing: 0.3em;
    font-weight: 400;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9),
            0 0 30px rgba(0, 0, 0, 0.7),
  -1px -1px 2px rgba(255, 255, 255, 0.5);
}

#threejs-container {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: grab;
}

#threejs-container:active {
    cursor: grabbing;
}

.swipe-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #9ca3af;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    z-index: 10;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
   opacity: 0.4;
    }
    50% {
      opacity: 0.8;
    }
}

/* === NAVIGATION ELLIPSES === */
.nav-ellipse {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 100;
    cursor: pointer;
}

.nav-ellipse:hover {
    transform: scale(1.1);
    background: rgba(249, 250, 251, 1);
    border-color: rgba(0, 0, 0, 0.2);
}

.nav-ellipse i {
    color: #1f2937;
    font-size: 1.2rem;
}

.ellipse-1 {
 top: 2rem;
    left: 2rem;
}

.ellipse-2 {
    top: 2rem;
  right: 8rem;
}

.ellipse-3 {
    top: 2rem;
    right: 2rem;
}

/* === SECTIONS === */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-dark {
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 50%, #f9fafb 100%);
}

.section-darker {
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-family: 'Selima', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* === BESTSELLERS GRID === */
.bestseller-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 2rem;
    margin-top: 4rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(220, 38, 38, 0.3);
}

.product-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 2rem;
}

.product-name {
    font-family: 'Signature Moonline', cursive;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.product-price {
    font-size: 1.2rem;
    color: #4b5563;
    font-weight: 200;
}

/* === BRAND STORY === */
.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.story-item {
    text-align: center;
    padding: 2rem;
    background: rgba(249, 250, 251, 0.8);
border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.story-item:hover {
    background: rgba(243, 244, 246, 1);
    transform: translateY(-5px);
    border-color: rgba(220, 38, 38, 0.2);
}

.story-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #DC2626;
}

.story-title {
    font-family: 'Signature Moonline', cursive;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.story-text {
    color: #6b7280;
  font-size: 0.95rem;
    line-height: 1.6;
}

/* === INFO SECTION === */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.info-card {
    background: rgba(249, 250, 251, 0.9);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(243, 244, 246, 1);
    transform: translateY(-5px);
    border-color: rgba(220, 38, 38, 0.2);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #DC2626;
}

.info-title {
    font-family: 'Signature Moonline', cursive;
  font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.info-text {
    color: #6b7280;
    line-height: 1.6;
}

/* === FOOTER === */
.footer {
    background: #f9fafb;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.footer-section p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
  color: #4b5563;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #DC2626;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
 align-items: center;
 justify-content: center;
    color: #4b5563;
    transition: all 0.3s ease;
}

.social-links a:hover {
  background: #DC2626;
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: #6b7280;
    font-size: 0.9rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .nav-ellipse {
        width: 50px;
        height: 50px;
    }

    .ellipse-1 {
top: 1rem;
left: 1rem;
    }

    .ellipse-2 {
        top: 1rem;
        right: 4rem;
    }

  .ellipse-3 {
        top: 1rem;
  right: 1rem;
    }

    .section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    /* Mobile Hero Section */
    .hero-section {
        width: 100vw !important;
      height: 100vh !important;
        position: relative !important;
        overflow: hidden !important;
        background-position: center !important;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .logo-text {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.5rem);
    }
}
