/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Comfortaa', cursive;
    font-weight: 600;
}

/* ============================================
   BACK ARROW LINK
   ============================================ */
.back-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 18px;
    font-family: 'Noto Sans', sans-serif;
    margin-top: 30px;
    margin-bottom: 20px;
}

/* ============================================
   CAROUSEL SECTION
   ============================================ */
.carousel-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-slides {
        transition: none;
    }
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

/* Hide non-mobile-friendly slides on mobile - completely remove from layout */
@media (max-width: 768px) {
    .carousel-slide.hide-on-mobile {
        display: none !important;
        min-width: 0 !important;
        width: 0 !important;
        flex: 0 0 0 !important;
    }
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Carousel Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, opacity 0.3s ease;
    z-index: 10;
    opacity: 0.5;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.carousel-arrow svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.carousel-arrow.prev {
    left: 20px;
}

.carousel-arrow.next {
    right: 20px;
}

/* Carousel Pause/Play Control */
.carousel-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, opacity 0.3s ease;
    z-index: 10;
    opacity: 0.5;
}

.carousel-toggle:hover,
.carousel-toggle:focus-visible {
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.carousel-toggle svg {
    width: 16px;
    height: 16px;
    fill: #ffffff;
}

.carousel-toggle .icon-play {
    display: none;
}

.carousel-toggle.paused .icon-play {
    display: block;
}

.carousel-toggle.paused .icon-pause {
    display: none;
}

/* Carousel Dot Indicators */
.carousel-dots {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-dot:hover,
.carousel-dot:focus-visible {
    background: rgba(255, 255, 255, 0.8);
}

.carousel-dot.active {
    background: #ffffff;
    transform: scale(1.2);
}

/* ============================================
   HERO TEXT OVERLAY
   ============================================ */
.hero-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.hero-tag {
    display: inline-block;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.hero-tag-small {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    color: #ffffff;
    display: block;
}

.hero-tag-large {
    font-family: 'Comfortaa', cursive;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.hero-title {
    font-family: 'Comfortaa', cursive;
    font-size: 48px;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* Scroll Down Arrow */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: pointer;
    animation: bounce 2s infinite;
}

@media (prefers-reduced-motion: reduce) {
    .scroll-down {
        animation: none;
    }
}

.scroll-down svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   MAIN CONTENT SECTION
   ============================================ */
.main-content {
    max-width: 650px;
    margin: 0 auto;
    padding: 80px 30px;
    text-align: left;
}

.main-content h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.main-content h2 {
    font-size: 28px;
    font-weight: 400;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.main-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.main-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 20px;
}

.main-content a:not(.cta-button) {
    color: #1a1a1a;
}

/* New Collection Section */
.new-collection {
    margin-top: 50px;
}

.new-collection h2 {
    font-size: 32px;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.new-collection h3 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.newsletter-text {
    margin-top: 20px;
    font-size: 15px;
    color: #555555;
}

/* ============================================
   CTA BUTTONS
   ============================================ */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid #1a1a1a;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover,
.cta-button:focus-visible {
    background-color: #ffffff;
    color: #1a1a1a;
}

.cta-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.cta-button-icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

.cta-button-icon.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-color: transparent;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cta-button-icon.instagram:hover,
.cta-button-icon.instagram:focus-visible {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    opacity: 0.85;
    transform: translateY(-1px);
}

/* ============================================
   SCROLL TO TOP ARROW
   ============================================ */
.scroll-up {
    display: flex;
    justify-content: center;
    padding: 40px 0 60px;
    cursor: pointer;
}

.scroll-up svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: #1a1a1a;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
}

.scroll-up:hover svg {
    transform: translateY(-5px);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    width: 100%;
    margin-top: 60px;
    padding: 30px 0 20px 0;
    background: #fafafa;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    font-size: 15px;
    color: #888;
}

.site-footer a {
    color: #888;
    text-decoration: underline;
    margin: 0 6px;
}

.site-footer .divider {
    margin: 0 6px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-tag-large {
        font-size: 16px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }

    .carousel-arrow.prev {
        left: 10px;
    }

    .carousel-arrow.next {
        right: 10px;
    }

    .main-content {
        padding: 50px 20px;
    }

    .main-content h1 {
        font-size: 32px;
    }

    .new-collection h2 {
        font-size: 26px;
    }

    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
        letter-spacing: 1px;
    }

    .hero-tag {
        padding: 6px 15px;
    }

    .hero-tag-small {
        font-size: 12px;
    }

    .hero-tag-large {
        font-size: 14px;
    }

    .carousel-dots {
        gap: 8px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }

    .main-content h1 {
        font-size: 28px;
    }

    .cta-button {
        padding: 8px 16px;
        font-size: 13px;
    }

    .cta-button-icon {
        padding: 8px;
    }
}
