/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #000;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Static background image */
.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Background.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Overlay image that moves with scroll */
.overlay-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Junset_Transparent.png');
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 2;
    opacity: 0.9;
}

/* Tear-drop shaped buttons */
.teardrop-buttons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: auto;
}

.teardrop-btn {
    position: absolute;
    width: 120px;
    height: 80px;
    background: #fff;
    border: 3px solid #000;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 2px #fff, 0 4px 0 #000, 0 8px 15px rgba(0, 0, 0, 0.3);
    transform-origin: center;
    filter: drop-shadow(2px 2px 0 #000);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* Graffiti-style shapes for each button */
.clothes-btn {
    border-radius: 60% 40% 50% 30% / 70% 60% 40% 50%; /* Organic blob */
    background: #fff;
}

.videos-btn {
    border-radius: 45% 55% 35% 65% / 60% 40% 60% 40%; /* Irregular oval */
    background: #fff;
}

.photo-btn {
    border-radius: 50% 30% 70% 40% / 40% 60% 30% 70%; /* Wobbly circle */
    background: #fff;
}

.socials-btn {
    border-radius: 40% 60% 30% 70% / 50% 30% 60% 40%; /* Rough square */
    background: #fff;
}

.teardrop-btn:hover {
    transform: scale(1.1) translateY(-2px) rotate(2deg);
    box-shadow: 0 0 0 3px #fff, 0 6px 0 #000, 0 12px 20px rgba(0, 0, 0, 0.4);
    filter: drop-shadow(3px 3px 0 #000) brightness(1.1);
}

.btn-text {
    color: #000;
    font-weight: 900;
    font-size: 14px;
    font-family: 'Arial Black', Arial, sans-serif;
    text-shadow: none;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Creative positioning around Junset image */
.clothes-btn {
    top: 15%;
    left: 10%;
    transform: rotate(-15deg);
}

.videos-btn {
    top: 20%;
    right: 15%;
    transform: rotate(15deg);
}

.photo-btn {
    bottom: 25%;
    left: 15%;
    transform: rotate(-10deg);
}

.socials-btn {
    bottom: 20%;
    right: 10%;
    transform: rotate(10deg);
}

/* Hover animations for each button */
.clothes-btn:hover {
    transform: scale(1.1) translateY(-5px) rotate(-15deg);
}

.videos-btn:hover {
    transform: scale(1.1) translateY(-5px) rotate(15deg);
}

.photo-btn:hover {
    transform: scale(1.1) translateY(-5px) rotate(-10deg);
}

.socials-btn:hover {
    transform: scale(1.1) translateY(-5px) rotate(10deg);
}

/* Section 2 */
.section2 {
    position: relative;
    height: calc(80vh + 75px);
    overflow: visible;
}

.section2-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Section2.png');
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
}

/* Graffiti Typography */
.graffiti-title {
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 900;
    font-size: 3rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 3px 3px 0 #fff, -3px -3px 0 #fff, 3px -3px 0 #fff, -3px 3px 0 #fff;
    margin-bottom: 2rem;
    text-align: center;
}

.graffiti-text {
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 3rem;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

/* Photo Grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

/* Social Grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.product-card {
    background: #fff;
    border: 4px solid #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 0 #000, 0 12px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    filter: drop-shadow(3px 3px 0 #000);
}

.product-card:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 0 12px 0 #000, 0 20px 30px rgba(0, 0, 0, 0.4);
}

.product-image {
    height: 250px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 4px solid #000;
    position: relative;
}

.placeholder-image {
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: #000;
    text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-title {
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.product-price {
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 15px;
}

.graffiti-btn {
    background: #000;
    color: #fff;
    border: 3px solid #000;
    padding: 12px 24px;
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 0 #000;
    filter: drop-shadow(2px 2px 0 #000);
}

.graffiti-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #000;
}

.graffiti-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #000;
}

/* Video Cards */
.video-card {
    background: #fff;
    border: 4px solid #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 0 #000, 0 12px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    filter: drop-shadow(3px 3px 0 #000);
}

.video-card:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 0 12px 0 #000, 0 20px 30px rgba(0, 0, 0, 0.4);
}

.video-thumbnail {
    height: 200px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 4px solid #000;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.video-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.video-thumbnail:hover .play-button {
    transform: scale(1.2);
}

.play-button {
    position: absolute;
    font-size: 3rem;
    color: #000;
    text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-placeholder {
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: #000;
    text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

.video-info {
    padding: 20px;
    text-align: center;
}

.video-title {
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.video-duration {
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #000;
    margin-bottom: 15px;
    opacity: 0.8;
}

/* Photo Cards */
.photo-card {
    background: #fff;
    border: 4px solid #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 0 #000, 0 12px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    filter: drop-shadow(3px 3px 0 #000);
}

.photo-card:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 0 12px 0 #000, 0 20px 30px rgba(0, 0, 0, 0.4);
}

.photo-image {
    height: 250px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 4px solid #000;
    position: relative;
    overflow: hidden;
}

.photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-card:hover .photo-img {
    transform: scale(1.05);
}

.photo-placeholder {
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: #000;
    text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.instagram-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.instagram-icon {
    font-size: 4rem;
    margin-bottom: 10px;
}

.instagram-text {
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: #000;
    text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.photo-info {
    padding: 20px;
    text-align: center;
}

.photo-title {
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.photo-category {
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #000;
    margin-bottom: 15px;
    opacity: 0.8;
}

.instagram-card {
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
}

.placeholder-card {
    background: #f8f8f8;
}

/* Social Cards */
.social-card {
    background: #fff;
    border: 4px solid #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 0 #000, 0 12px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    filter: drop-shadow(3px 3px 0 #000);
}

.social-card:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 0 12px 0 #000, 0 20px 30px rgba(0, 0, 0, 0.4);
}

.social-icon {
    height: 150px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 4px solid #000;
    position: relative;
}

.social-placeholder {
    font-size: 4rem;
    text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff;
}

.social-info {
    padding: 20px;
    text-align: center;
}

.social-title {
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.social-handle {
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 15px;
    opacity: 0.8;
}

/* Doodle-3 */
.doodle-3 {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.doodle-image {
    max-width: 120px;
    height: auto;
    filter: drop-shadow(3px 3px 0 #000);
    transition: all 0.3s ease;
}

.doodle-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(4px 4px 0 #000);
}

/* Main content */
.main-content {
    background: #f8f9fa;
    padding: 80px 0;
}

.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #000;
}

.content-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #000;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content-section ul {
    max-width: 600px;
    margin: 0 auto 2rem;
    padding-left: 2rem;
}

.content-section li {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #000;
}

/* Features grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.feature-card p {
    color: #000;
    font-size: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .content-section h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Product grid responsive */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Video grid responsive */
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Photo grid responsive */
    .photo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Social grid responsive */
    .social-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .graffiti-title {
        font-size: 2.5rem;
    }
    
    .product-card,
    .video-card,
    .photo-card,
    .social-card {
        border-radius: 15px;
    }
    
    .product-image,
    .video-thumbnail,
    .photo-image {
        height: 200px;
    }
    
    .placeholder-image,
    .video-placeholder,
    .photo-placeholder {
        font-size: 1.5rem;
    }
    
    .play-button {
        font-size: 2.5rem;
    }
    
    .instagram-icon {
        font-size: 3rem;
    }
    
    .instagram-text {
        font-size: 1.2rem;
    }
    
    .social-icon {
        height: 120px;
    }
    
    .social-placeholder {
        font-size: 3rem;
    }
    
    .doodle-image {
        max-width: 100px;
    }
    
    .overlay-image {
        height: 110%;
    }
    
    /* Responsive tear-drop buttons */
    .teardrop-btn {
        width: 80px;
        height: 60px;
    }
    
    .btn-text {
        font-size: 12px;
    }
    
    .clothes-btn {
        top: 10%;
        left: 5%;
    }
    
    .videos-btn {
        top: 15%;
        right: 10%;
    }
    
    .photo-btn {
        bottom: 20%;
        left: 8%;
    }
    
    .socials-btn {
        bottom: 15%;
        right: 5%;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 40px 15px;
    }
    
    /* Extra small screens - smaller buttons */
    .teardrop-btn {
        width: 60px;
        height: 45px;
    }
    
    .btn-text {
        font-size: 10px;
    }
    
    .clothes-btn {
        top: 8%;
        left: 3%;
    }
    
    .videos-btn {
        top: 12%;
        right: 8%;
    }
    
    .photo-btn {
        bottom: 15%;
        left: 5%;
    }
    
    .socials-btn {
        bottom: 12%;
        right: 3%;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Performance optimizations */
.background-image,
.overlay-image {
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}
