/* ===== CSS Variables ===== */
:root {
    --color-primary: #2a9d8f;
    --color-primary-dark: #21867a;
    --color-secondary: #7c5cbf;
    --color-secondary-light: #9b7dd4;
    --color-accent: #e9c46a;
    --color-accent-dark: #d4a853;
    --color-background: #faf8f5;
    --color-background-alt: #f0ebe3;
    --color-text: #2d3436;
    --color-text-light: #636e72;
    --color-white: #ffffff;

    --font-display: 'Fredoka', sans-serif;
    --font-body: 'Nunito', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50%;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary-dark);
}

ul {
    list-style: none;
}

/* ===== Utility Classes ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 16px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 48px;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 16px;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--color-white);
}

/* ===== Navigation ===== */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.nav-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--color-white);
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.8;
    color: var(--color-white);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('IMG_2044.PNG');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(42, 60, 80, 0.4) 0%,
        rgba(42, 60, 80, 0.5) 40%,
        rgba(90, 61, 150, 0.7) 100%
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 48px 64px;
    z-index: 10;
    background: rgba(30, 40, 60, 0.35);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(6px);
}

.hero-studio {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 4rem;
    color: var(--color-white);
    margin-bottom: 24px;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    color: var(--color-accent);
    display: block;
    font-size: 4.5rem;
}

.hero-tagline {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 500;
}

/* Sparkle Decorations */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: var(--radius-full);
    animation: sparkle 3s ease-in-out infinite;
}

.sparkle-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 40%;
    right: 20%;
    animation-delay: 1s;
}

.sparkle-3 {
    bottom: 30%;
    left: 25%;
    animation-delay: 2s;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* ===== About Section ===== */
.about {
    background-color: var(--color-background);
}

.about-content {
    display: grid;
    gap: 48px;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    margin-bottom: 16px;
    color: var(--color-text-light);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.feature {
    text-align: center;
    padding: 32px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature:nth-child(1) .feature-icon { color: var(--color-accent); }
.feature:nth-child(2) .feature-icon { color: var(--color-secondary); }
.feature:nth-child(3) .feature-icon { color: var(--color-primary); }

.feature h3 {
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: 8px;
}

.feature p {
    color: var(--color-text-light);
    font-size: 1rem;
}

/* ===== Princess Petra Section ===== */
.petra {
    background: linear-gradient(180deg, var(--color-background-alt) 0%, var(--color-background) 100%);
}

.petra-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.petra-image {
    position: relative;
}

.petra-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.petra-image:hover img {
    transform: scale(1.02);
}

.petra-image::before {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    right: 16px;
    bottom: 16px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}

.petra-text .section-title {
    text-align: left;
}

.petra-text p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

/* ===== Listen Section ===== */
.listen {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #5a3d96 100%);
    color: var(--color-white);
}

.listen .section-title {
    color: var(--color-white);
}

.listen .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.podcast-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.podcast-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 32px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    color: var(--color-white);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.podcast-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    color: var(--color-white);
}

.podcast-icon {
    width: 28px;
    height: 28px;
}

/* ===== Footer ===== */
.footer {
    background: var(--color-text);
    color: rgba(255, 255, 255, 0.8);
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: 16px;
}

.footer-brand p {
    max-width: 400px;
}

.footer-links h4 {
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 16px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-title .highlight {
        font-size: 3.5rem;
    }

    .petra-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .petra-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .petra-text .section-title {
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 16px 24px;
    }

    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-title .highlight {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .podcast-links {
        flex-direction: column;
        align-items: center;
    }

    .podcast-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-title .highlight {
        font-size: 2rem;
    }

    .btn {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .feature {
        padding: 24px;
    }
}
