/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --text-light: #e0e0e0;
    --text-muted: #a0a0a0;
    --accent-pink: #ff006e;
    --accent-blue: #00d9ff;
    --accent-purple: #8b5cf6;
    --card-bg: #1a1a1a;
    --border-color: #333;
}

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

h1, h2, h3 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    position: relative;
}

.hero-content {
    z-index: 2;
}

.hero-logo {
    max-width: 600px;
    width: 90%;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 30px rgba(255, 0, 110, 0.3));
}

.hero h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--text-muted);
    font-weight: 300;
    font-style: italic;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    font-size: 2rem;
    color: var(--accent-pink);
    animation: bounce 2s infinite;
}

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

/* About Section */
.about {
    padding: 100px 20px;
    background-color: var(--bg-dark);
}

.about h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.about-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Books Section */
.books {
    padding: 100px 20px;
    background-color: var(--bg-darker);
}

.books h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.book-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.book-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
}

.book-card.coming-soon-book {
    opacity: 0.6;
    cursor: default;
}

.book-card.coming-soon-book:hover {
    transform: none;
    box-shadow: none;
}

.book-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.book-card h3 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.book-price {
    font-size: 1rem;
    color: var(--accent-pink);
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Shop Section */
.shop {
    padding: 100px 20px;
    background-color: var(--bg-dark);
}

.shop h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.shop-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.shop-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 3rem;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 250px;
    box-shadow: 0 5px 20px rgba(255, 0, 110, 0.3);
}

.shop-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 0, 110, 0.5);
}

.shop-btn.coming-soon {
    background: linear-gradient(135deg, #555, #777);
    cursor: default;
}

.shop-btn.coming-soon:hover {
    transform: none;
    box-shadow: 0 5px 20px rgba(85, 85, 85, 0.3);
}

.btn-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.btn-text {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.btn-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Social Section */
.social {
    padding: 100px 20px;
    background-color: var(--bg-darker);
}

.social h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: var(--accent-pink);
    border-color: var(--accent-pink);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 0, 110, 0.4);
}

.social-btn svg {
    width: 24px;
    height: 24px;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background-color: var(--bg-dark);
    text-align: center;
}

.contact h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.contact a {
    color: var(--accent-pink);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: var(--accent-blue);
}

/* Footer */
footer {
    padding: 40px 20px;
    background-color: var(--bg-darker);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .books-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .shop-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .shop-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-btn {
        width: 100%;
        max-width: 250px;
    }
}
