/* ==============================
   GLOBAL
============================== */
html, body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #fff0f6;
    color: #333;
    scroll-behavior: smooth;
}

/* ==============================
   HEADER
============================== */
header {
    background: #fff;
    padding: 0.5em 2em;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
header h2 {
    margin: 0;
    font-size: 1em;
    font-weight: 500;
}

/* ==============================
   HERO SECTION
============================== */
.hero {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 60px);
    background-image: url('images/pic01.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5em 1em;
    border: 10px solid #f7d0e6;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
    overflow: hidden;
}
.hero h2 {
    font-family: 'Montserrat', sans-serif;
    color: #ff66a3;
    font-size: 2.6em;
    margin-bottom: 0.7em;
    font-weight: 500;
    text-shadow: 2px 2px 0 #fff, 0 2px 4px rgba(0,0,0,0.25);
}
.hero p {
    position: relative;
    max-width: 700px;
    font-size: 1.1em;
    line-height: 1.6em;
    color: #fff;
    padding: 1.2em 1.5em;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.8);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* ==============================
   SCROLL-DOWN ARROW WITH TEXT
============================== */
.scroll-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3em;
}
.scroll-text {
    color: #fff;
    font-size: 2.2em; /* bigger text */
    font-weight: 800; /* bold */
    text-shadow: 2px 2px 12px rgba(0,0,0,0.8);
    margin-bottom: 0.6em;
    letter-spacing: 1px;
    animation: pulse 2s infinite alternate;
}
.scroll-down {
    font-size: 3.5em; /* bigger arrow */
    color: #fff;
    text-decoration: none;
    animation: bounce 2s infinite, glow 1.8s infinite alternate;
    text-shadow: 0 0 12px rgba(255,255,255,1), 0 0 25px rgba(255,105,180,0.9);
    margin-top: 0.3em;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(15px); }
    60% { transform: translateY(8px); }
}
@keyframes glow {
    0% { text-shadow: 0 0 12px rgba(255,255,255,1), 0 0 25px rgba(255,105,180,0.9); }
    50% { text-shadow: 0 0 18px rgba(255,255,255,1.2), 0 0 35px rgba(255,105,180,1); }
    100% { text-shadow: 0 0 12px rgba(255,255,255,1), 0 0 25px rgba(255,105,180,0.9); }
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ==============================
   SECTION DIVIDER
============================== */
.section-divider {
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #ffc0cb, #ffe6f0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* ==============================
   LINKS SECTION
============================== */
.links-section {
    position: relative;
    background-image: url('images/pic02.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 110vh;
    padding: 10em 1em 5em 1em;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    border: 10px solid #f7d0e6;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
}

/* ==============================
   BUTTONS WITH STAGGERED ANIMATION
============================== */
.link-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 1em;
    margin-top: 35em;
}
.link-buttons a.button {
    display: inline-block;
    margin: 0.5em;
    padding: 1em 2em;
    font-size: 1em;
    border-radius: 30px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border: 2px solid #f7d0e6;
    min-width: 200px;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.6s ease, opacity 0.6s ease;
}
.link-buttons a.button.visible {
    opacity: 1;
    transform: translateY(0);
}
.link-buttons a[href*="onlyfans"] { background-color: #00aff0; }
.link-buttons a[href*="twitter"] { background-color: #000; }
.link-buttons a[href*="instagram"] { background-color: #e1306c; }
.link-buttons a[href*="kick"] { background-color: #55ff55; color: #000; }
.link-buttons a[href*="youtube"] { background-color: #ff0000; }
.link-buttons a[href*="discord"] { 
    background-color: #5865F2; 
    color: #fff; 
    border: 2px solid #f7d0e6;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}
.link-buttons a.button:hover { transform: scale(1.05); }
.link-buttons a[href*="discord"]:hover {
    box-shadow: 0 6px 25px rgba(88, 101, 242, 0.6);
}

/* ==============================
   MEDIA QUERIES
============================== */
@media (max-width: 768px) {
    .hero { min-height: auto; background-size: contain; background-position: top center; padding: 1em 1em; }
    .link-buttons { margin-top: 20em; }
    .hero h2 { font-size: 2.2em; }
    .hero p { font-size: 1em; max-width: 90%; }
    .links-section { padding: 8em 1em 3em 1em; min-height: 90vh; }
    .link-buttons a.button { min-width: 90%; padding: 0.8em 1.5em; font-size: 1em; }
    .scroll-text { font-size: 1.8em; }
    .scroll-down { font-size: 3em; }
}
@media (max-width: 480px) {
    .hero { min-height: auto; background-size: contain; background-position: top center; padding: 0.8em 1em; }
    .link-buttons { margin-top: 15em; }
    .hero h2 { font-size: 1.8em; }
    .hero p { font-size: 0.95em; }
    .links-section { padding: 6em 1em 2em 1em; min-height: 80vh; }
    .link-buttons a.button { min-width: 90%; }
    .scroll-text { font-size: 1.5em; }
    .scroll-down { font-size: 2.5em; }
}
