/* ===== HOME PAGE — KAYLA PADILLA STYLE ===== */

/* Full blue background */
.home-body {
    background-color: #2874a6;
    margin: 0;
    font-family: Arial, sans-serif;
    color: #ffffff;
}

/* ===== NAV ===== */
.home-body nav {
    background-color: #ffffff;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.home-body nav a {
    color: #222;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    font-size: 15px;
    transition: color 0.2s ease;
}

.home-body nav a:hover {
    color: #0077cc;
}

.home-body nav .nav-brand {
    color: #2874a6 !important;
    margin: 0 !important;
    font-size: clamp(14px, 2vw, 20px);
}

/* ===== MAIN ===== */
.home-main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 50px;
}

/* ===== HERO ===== */
.hero-section {
    padding: 80px 0;
    background-color: transparent;
    border-radius: 0;
    margin-bottom: 0;
    margin-top: 10px;
}

.hero-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-image {
    flex: 0 0 auto;
}

.hero-photo {
    width: clamp(180px, 18vw, 220px);
    height: clamp(220px, 24vw, 300px);
    object-fit: cover;
    border-radius: 110px 110px 10px 10px;
    animation: floatPhoto 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.hero-photo:hover {
    transform: scale(1.05);
}

@keyframes floatPhoto {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-text h1 {
    font-size: 36px;
    color: #ffffff;
    line-height: 1.4;
    font-weight: bold;
    margin: 0;
}

/* ===== INTRO ===== */
.intro-section {
    padding: 60px 0;
    background-color: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    margin-bottom: 0;
}

.intro-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.intro-left {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 5px;
}

.intro-line {
    width: 50px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.5);
}

.intro-label {
    font-size: 15px;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.intro-right p {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    margin-bottom: 20px;
}

/* Gallery */
.intro-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 50px;
}

.gallery-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
}

/* ===== QUOTE SECTION ===== */
.quote-section {
    background-color: #ffffff;
    padding: 80px 40px;
    margin-top: 0;
    border-radius: 0;
    text-align: center;
    border-top: 6px solid #2874a6;
}

.quote-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.quote-text {
    flex: 1;
}

.quote-text p {
    font-size: 34px;
    color: #2874a6;
    font-weight: bold;
    line-height: 1.4;
    margin: 0 0 20px 0;
    font-family: Georgia, serif;
    font-style: italic;
}

.quote-slide {
    display: none;
    text-align: center;
}

.quote-slide.active {
    display: block;
    animation: quoteSlideIn 0.5s ease;
}

.quote-slide.slide-left {
    animation: quoteSlideLeft 0.5s ease;
}

.quote-slide.slide-right {
    animation: quoteSlideRight 0.5s ease;
}

@keyframes quoteSlideIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes quoteSlideLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes quoteSlideRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.quote-author {
    font-size: 16px;
    color: #2874a6;
    font-weight: 500;
}

.quote-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #2874a6;
    background-color: rgba(40, 116, 166, 0.05);
    color: #2874a6;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.quote-arrow:hover {
    background-color: #2874a6;
    color: #ffffff;
    transform: scale(1.1);
}

/* ===== MUSIC SECTION ===== */
.music-section {
    background-color: #a8c8e0;
    padding: 50px 40px;
    text-align: center;
    border-radius: 0;
    margin: 0;
}

.music-section h3 {
    color: #222;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.music-label {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 20px;
    text-decoration: underline;
}

.music-video {
    max-width: 300px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

.music-video iframe {
    width: 100%;
    height: 200px;
    border-radius: 8px;
}

/* ===== FOOTER ===== */
.home-footer,
.home-body footer {
    background-color: #222;
    padding: 30px;
    text-align: center;
}

.home-body footer p {
    margin: 0;
    font-size: 14px;
    color: white;
}

/* ===== RESPONSIVE: Tablet ===== */
@media (max-width: 900px) {
    .home-main {
        padding: 0 30px;
    }

    .hero-layout {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-text h1 {
        text-align: center;
        font-size: 28px;
    }

    .intro-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .intro-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .quote-content {
        flex-direction: column;
        gap: 20px;
    }

    .quote-text p {
        font-size: 24px;
    }
}

/* ===== RESPONSIVE: Mobile ===== */
@media (max-width: 600px) {
    .home-body nav {
        padding: 15px 20px;
    }

    .home-body nav .nav-links {
        display: none !important;
    }

    .home-body .mobile-menu-btn {
        display: flex;
    }

    .home-body nav a {
        margin: 0 8px;
        font-size: 13px;
    }

    .home-main {
        padding: 0 20px;
    }

    .hero-section {
        padding: 40px 0;
    }

    .hero-layout {
        flex-direction: column-reverse;
        text-align: left;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 24px;
        text-align: left;
    }

    .hero-photo {
        width: 220px;
        height: 270px;
        border-radius: 110px 110px 10px 10px;
    }

    .hero-image {
        text-align: center;
    }

    .intro-section {
        padding: 40px 0;
    }

    .intro-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .intro-right p {
        font-size: 16px;
        line-height: 1.8;
    }

    .intro-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-image {
        height: 200px;
    }

    .quote-section {
        padding: 40px 20px;
        margin-top: 20px;
    }

    .quote-text p {
        font-size: 20px;
    }

    .quote-content {
        flex-direction: column;
        gap: 20px;
    }

    .quote-arrow {
        width: 38px;
        height: 38px;
    }

    .music-section {
        padding: 35px 20px;
    }

    .music-video {
        max-width: 100%;
    }

    .music-video iframe {
        height: 180px;
    }
}

/* ===== RESPONSIVE: Small Mobile ===== */
@media (max-width: 380px) {
    .hero-text h1 {
        font-size: 20px;
    }

    .hero-photo {
        width: 180px;
        height: 220px;
    }

    .intro-right p {
        font-size: 15px;
    }

    .quote-text p {
        font-size: 18px;
    }

    .home-main {
        padding: 0 12px;
    }
}
