/* circleimage.css */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1a1a; /* Solid dark metallic background */
    color: #333;
    line-height: 1.6;
}

header.hero {
    background: linear-gradient(to right, #89253e, #b31217);
    text-align: center;
    padding: 30px 20px 40px; /* top, sides, bottom */
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}



.hero-text {
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    text-align: center;
}



.hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 10px;
    display: inline-block;
    
    /* Gradient Text */
    background: linear-gradient(to right, #e0e0e0, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow:
        2px 2px 0 #000000,
        3px 3px 5px rgba(0, 0, 0, 0.4);
}


@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem; /* Resize for mobile */
    }
}

.cta-buttons {
    text-align: center;
    margin-top: 30px;
}

.cta-buttons a {
    display: inline-block;
    margin: 10px 15px;
    padding: 12px 24px;
    background-color: #ffffff;
    color: #89253e;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cta-buttons a:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

section {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
    background-color: #2e2e2e; /* Solid metallic section color */
    color: #f0f0f0;
    border-radius: 10px;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05), inset 0 0 15px rgba(0, 0, 0, 0.2);
}

section.series {
    background-color: #1a1a1a; /* Match body background */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

section.series h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.series-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
    text-align: center;
}

.series-item {
    background: linear-gradient(to bottom right, #b31217, #89253e); /* Maroon gradient */
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    width: 280px;
    transition: transform 0.3s ease;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    text-align: center;
}

.series-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.series-item:hover {
    transform: translateY(-5px);
}

section.affiliate {
    text-align: center;
    font-size: 1rem;
    background-color: #f9f9f9;
    padding: 30px 20px;
    border-top: 1px solid #ddd;
    color: #222;
}

footer {
    background-color: #222;
    color: #eee;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

footer a {
    color: #9ecfff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@keyframes fadeInHero {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    animation: fadeInHero 1.2s ease-out both;
}

section.affiliate-tools {
    background: linear-gradient(to bottom right, #b31217, #89253e); /* Maroon gradient */
    color: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    margin-top: 20px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.affiliate-tools a {
    color: #ffe4c4; /* Light peach for readability */
    font-weight: bold;
    text-decoration: underline;
}

.affiliate-tools a:hover {
    text-decoration: none;
    color: #ffffff;
}


