/* Clean, Simple Styles - No Scroll Animations */

/* Base Styles */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

/* Remove all animations - make everything visible */
.scroll-section,
.slide-up,
.animate-on-scroll,
.hero-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* Clean section styling */
section {
    width: 100%;
    position: relative;
    padding: 60px 0;
}

.fullscreen-section {
    padding: 100px 0;
    position: relative;
    width: 100%;
    min-height: auto;
}

/* Center logo properly */
.hero-logo {
    display: block;
    margin: 0 auto;
}

/* Gradient text (keep this, it's subtle) */
.gradient-text {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Simple card hover effect */
.content-card,
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover,
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Product click feedback */
.product-clickable {
    transition: transform 0.15s ease;
}

.product-clickable:active {
    transform: scale(0.98);
}

/* Image styling */
img {
    max-width: 100%;
    height: auto;
}

.card-img-top {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 300px;
}

/* Card overflow fixes */
.card {
    overflow: hidden;
    word-wrap: break-word;
}

.card-body {
    overflow-wrap: break-word;
}

/* Sticky Merch Bar */
.sticky-merch-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    color: white;
    padding: 12px 0;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.sticky-merch-bar.hidden {
    transform: translateY(100%);
}

.merch-bar-products {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 0 15px;
    scrollbar-width: none;
}

.merch-bar-products::-webkit-scrollbar {
    display: none;
}

.merch-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    white-space: nowrap;
    transition: background 0.3s ease;
    position: relative;
}

.merch-bar-item:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.merch-bar-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.merch-bar-info {
    display: flex;
    flex-direction: column;
}

.merch-bar-info .name {
    font-size: 14px;
    font-weight: 600;
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.merch-bar-info .price {
    font-size: 16px;
    font-weight: bold;
    color: #ffd700;
}

.merch-bar-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
}

.merch-bar-cta {
    background: #ffd700;
    color: #1a1a2e;
    padding: 10px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.merch-bar-cta:hover {
    background: #ffed4e;
    color: #1a1a2e;
}

/* Scroll arrow */
.scroll-down-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 100;
    opacity: 0.8;
}

.scroll-down-arrow:hover {
    opacity: 1;
}

.scroll-down-arrow i {
    font-size: 2.5rem;
}

/* Price badges */
.price-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1.8rem;
    font-weight: bold;
    display: inline-block;
}

/* Button styling */
.btn-view-product,
.btn-shop {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-view-product:hover,
.btn-shop:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Product image overlay */
.product-image-overlay {
    transition: opacity 0.3s ease;
}

.position-relative:hover .product-image-overlay {
    opacity: 1 !important;
}

/* RESPONSIVE STYLES */

/* Tablets and smaller laptops */
@media (max-width: 1024px) {
    section {
        padding: 60px 0;
    }

    .fullscreen-section {
        padding: 60px 0;
    }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 1024px) {
    .display-1 {
        font-size: 3.5rem !important;
    }

    .display-2 {
        font-size: 3rem !important;
    }

    .display-3 {
        font-size: 2.5rem !important;
    }

    h1[style*="font-size: 5rem"] {
        font-size: 3.5rem !important;
    }

    [style*="font-size: 2.5rem"] {
        font-size: 2rem !important;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }

    .fullscreen-section {
        padding: 60px 0;
    }

    section.hero-scroll,
    section.fullscreen-section:first-child {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    /* Navbar fixes */
    .navbar-brand img {
        height: 30px !important;
    }

    .navbar-brand {
        font-size: 1.1rem !important;
    }

    .navbar-collapse {
        margin-top: 10px;
    }

    /* Typography */
    .display-1 {
        font-size: 2.5rem !important;
    }

    .display-2 {
        font-size: 2rem !important;
    }

    .display-3 {
        font-size: 1.75rem !important;
    }

    .display-4 {
        font-size: 1.5rem !important;
    }

    .display-5 {
        font-size: 1.25rem !important;
    }

    h1[style*="font-size: 5rem"] {
        font-size: 2.5rem !important;
    }

    [style*="font-size: 2.5rem"] {
        font-size: 1.75rem !important;
    }

    .lead.fs-2 {
        font-size: 1.25rem !important;
    }

    .lead.fs-3 {
        font-size: 1.15rem !important;
    }

    .lead.fs-4 {
        font-size: 1.1rem !important;
    }

    .lead {
        font-size: 1.1rem !important;
    }

    /* Layout */
    .hero-logo {
        max-width: 150px !important;
    }

    .card-body {
        padding: 1.5rem !important;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem !important;
    }

    .price-badge {
        font-size: 1.5rem !important;
        padding: 0.5rem 1rem !important;
    }

    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .card-img-top {
        max-height: 200px;
    }

    /* Merch bar */
    .sticky-merch-bar {
        padding: 8px 0;
    }

    .merch-bar-item {
        padding: 6px 10px;
    }

    .merch-bar-item img {
        width: 50px;
        height: 50px;
    }

    .merch-bar-info .name {
        font-size: 12px;
        max-width: 100px;
    }

    .merch-bar-info .price {
        font-size: 14px;
    }

    .merch-bar-cta {
        padding: 8px 20px;
        font-size: 14px;
    }

    /* Scroll arrow */
    .scroll-down-arrow {
        bottom: 20px;
    }

    .scroll-down-arrow i {
        font-size: 2rem;
    }

    /* Shop */
    .btn-group {
        flex-direction: column !important;
        width: 100%;
    }

    .btn-group .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    .display-1 {
        font-size: 2rem !important;
    }

    .display-2 {
        font-size: 1.75rem !important;
    }

    .display-3 {
        font-size: 1.5rem !important;
    }

    h1[style*="font-size: 5rem"] {
        font-size: 2rem !important;
    }

    .hero-logo {
        max-width: 120px !important;
    }

    .lead {
        font-size: 1rem !important;
    }
}

/* Wide desktop - prevent stretching */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Social Proof Notifications - Bottom Left */
.social-proof-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9998;
    transform: translateX(-400px);
    transition: transform 0.3s ease-out;
    max-width: 350px;
}

.social-proof-notification.show {
    transform: translateX(0);
}

.social-proof-content {
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    border-left: 4px solid #ffd700;
}

.social-proof-icon {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-proof-icon i {
    color: white;
    font-size: 18px;
}

.social-proof-text {
    flex: 1;
    font-size: 13px;
    line-height: 1.4;
}

.social-proof-text strong {
    color: #1a1a2e;
    font-size: 14px;
}

.social-proof-text span {
    color: #666;
}

.social-proof-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: #999;
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color 0.2s ease;
}

.social-proof-close:hover {
    color: #333;
}

/* Mobile adjustments for social proof */
@media (max-width: 768px) {
    .social-proof-notification {
        bottom: 10px;
        left: 10px;
        right: 10px;
        max-width: none;
    }

    .social-proof-content {
        padding: 12px;
    }

    .social-proof-icon {
        width: 35px;
        height: 35px;
    }

    .social-proof-icon i {
        font-size: 16px;
    }

    .social-proof-text {
        font-size: 12px;
    }

    .social-proof-text strong {
        font-size: 13px;
    }
}

/* Fix navbar - ensure it's always visible and styled correctly */
.navbar {
    width: 100%;
    z-index: 1000;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.sticky-top {
    position: sticky !important;
    top: 0;
    z-index: 1020;
}

/* Hero sections - extra top padding for better layout */
section.hero-scroll,
section.fullscreen-section:first-child {
    padding-top: 120px;
    padding-bottom: 120px;
}

/* Hero content centering */
.hero-scroll .container,
.fullscreen-section .container {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-scroll img,
.fullscreen-section img.hero-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Fix hero text spacing */
.hero-scroll h1,
.hero-scroll h2,
.hero-scroll p {
    margin-left: auto;
    margin-right: auto;
}

.hero-scroll .display-1 {
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-scroll .display-5 {
    line-height: 1.3;
    margin-bottom: 2rem;
}
