/* 
 * hotaiporn.site - Main Stylesheet
 * Modern design with hot pink and purple theme
 */

/* Base Styles & Variables */
:root {
    --primary: #e91e63;
    --primary-dark: #c2185b;
    --primary-light: #f48fb1;
    --secondary: #9c27b0;
    --secondary-dark: #7b1fa2;
    --text-light: #fff;
    --text-dark: #333;
    --bg-dark: #121212;
    --bg-light: #f5f5f5;
    --border-radius: 8px;
    --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Roboto, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3, h4, h5 {
    line-height: 1.3;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.primary-btn {
    background: var(--primary);
    color: white;
}

.primary-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.premium-btn {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    font-size: 1.1rem;
    padding: 15px 40px;
}

.premium-btn:hover {
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(233, 30, 99, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
    }
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--primary);
}

.logo {
    width: 40px;
    height: 40px;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: var(--text-dark);
    font-weight: 500;
    padding-bottom: 5px;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    border-radius: 3px;
    transition: var(--transition);
}

/* Spotlight/Hero Section */
.spotlight {
    background: linear-gradient(135deg, #1a1a1a, #3a3a3a);
    color: white;
    display: flex;
    align-items: center;
    padding: 80px 5%;
    min-height: 500px;
}

.spotlight-content {
    flex: 1;
    padding-right: 50px;
}

.spotlight-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--primary-light), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.spotlight-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 500px;
}

.spotlight-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.screen {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* Featured Section */
.featured {
    padding: 80px 5% 50px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    margin: 15px auto 0;
    border-radius: 2px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-media {
    position: relative;
    overflow: hidden;
}

.card-svg {
    width: 100%;
    display: block;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: var(--transition);
}

.card:hover .play-icon {
    opacity: 1;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
}

.card-content p {
    color: var(--text-dark);
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Trending Section */
.trending {
    padding: 50px 5% 80px;
    background-color: white;
}

.trending-content {
    max-width: 900px;
    margin: 0 auto;
}

.trending-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
}

.stat h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat p {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.7;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.trending-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.tag {
    padding: 8px 20px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Premium Section */
.premium {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    color: white;
    padding: 80px 5%;
    text-align: center;
}

.premium-content {
    max-width: 700px;
    margin: 0 auto;
}

.premium h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.premium p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.features {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.features li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    text-align: left;
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 60px 5% 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: white;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-top: 20px;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        padding: 80px 30px;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .spotlight {
        flex-direction: column;
        text-align: center;
        padding: 60px 5%;
    }
    
    .spotlight-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .spotlight-content h2 {
        font-size: 2rem;
    }
    
    .trending-stats {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    .brand h1 {
        font-size: 1.2rem;
    }
    
    .spotlight-content h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .premium h2 {
        font-size: 1.8rem;
    }
}

/* Basic JS for Mobile Menu Toggle */
document.addEventListener('DOMContentLoaded', function() {
    const menuToggle = document.querySelector('.menu-toggle');
    const nav = document.querySelector('nav');
    
    if (menuToggle && nav) {
        menuToggle.addEventListener('click', function() {
            nav.classList.toggle('active');
            menuToggle.classList.toggle('active');
        });
    }
});
