/* CSS Custom Properties */
:root {
    --color-dark: #5a5269;
    --color-dark-purple: #6b6280;
    --color-golden: #d4a84b;
    --color-golden-light: #e8c77b;
    --color-peach: #f8c9a0;
    --color-cream: #fef9f3;
    --color-sunset-start: #a89bb8;
    --color-sunset-mid: #d4c5d9;
    --color-sunset-end: #fde8c8;
    --color-white: #ffffff;
    --color-text: #333333;
    --color-lavender: #e8e0f0;
    --color-blush: #fce4d8;
    
    --font-script: 'Allura', cursive;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Josefin Sans', sans-serif;
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-dark);
    color: var(--color-white);
    overflow-x: hidden;
}

/* Header */
.header {
    background-color: var(--color-dark);
    padding: 1.5rem 2rem;
    text-align: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-script);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--color-cream);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.social-icons a:hover {
    background-color: var(--color-golden);
    transform: translateY(-2px);
}

/* Navigation */
.nav {
    margin-top: 1.5rem;
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    transition: var(--transition);
    border-radius: 4px;
}

.nav-link:hover,
.nav-link.active {
    background-color: var(--color-golden);
    color: var(--color-dark);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 70vh;
    background: linear-gradient(
        135deg,
        var(--color-sunset-start) 0%,
        var(--color-lavender) 30%,
        var(--color-blush) 60%,
        var(--color-sunset-end) 100%
    );
    overflow: hidden;
    padding: 2rem;
}

.hero-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Music Notes */
.music-note {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    animation: float 6s ease-in-out infinite;
}

.note-1 { top: 15%; left: 5%; animation-delay: 0s; }
.note-2 { top: 60%; left: 8%; animation-delay: 1s; font-size: 1.5rem; }
.note-3 { top: 30%; right: 10%; animation-delay: 2s; }
.note-4 { bottom: 20%; left: 3%; animation-delay: 3s; font-size: 3rem; color: rgba(212, 168, 75, 0.4); }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Sparkles */
.sparkle {
    position: absolute;
    color: rgba(255, 255, 255, 0.6);
    animation: sparkle 2s ease-in-out infinite;
}

.sparkle-1 { top: 10%; right: 15%; font-size: 1.5rem; }
.sparkle-2 { top: 25%; right: 25%; font-size: 1rem; animation-delay: 0.5s; }
.sparkle-3 { bottom: 30%; right: 5%; font-size: 1.2rem; animation-delay: 1s; }
.sparkle-4 { top: 40%; left: 15%; font-size: 0.8rem; animation-delay: 1.5s; }

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

/* Hero Content */
.hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    min-height: 58vh;
    padding: 2rem 1rem;
}

/* Side Polaroids */
.side-polaroids {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 2;
}

.side-polaroids.left-side {
    align-items: flex-end;
}

.side-polaroids.right-side {
    align-items: flex-start;
}

.polaroid {
    background: var(--color-white);
    padding: 10px 10px 35px 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
    cursor: pointer;
    width: 240px;
}

.polaroid:hover {
    transform: scale(1.08) rotate(0deg) !important;
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.polaroid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.polaroid-1 {
    transform: rotate(-6deg);
}

.polaroid-2 {
    transform: rotate(4deg);
}

.polaroid-3 {
    transform: rotate(5deg);
}

.polaroid-4 {
    transform: rotate(-4deg);
}

/* Hero Center - Featured Image */
.hero-center {
    text-align: center;
    z-index: 5;
}

.featured-hero-image {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.image-frame {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--color-white);
    box-shadow: 
        0 0 0 4px var(--color-golden),
        0 25px 60px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(212, 168, 75, 0.2);
    transition: all 0.4s ease;
}

.image-frame:hover {
    transform: scale(1.03);
    box-shadow: 
        0 0 0 6px var(--color-golden),
        0 30px 70px rgba(0, 0, 0, 0.35),
        0 0 100px rgba(212, 168, 75, 0.3);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

/* Frame Decorations */
.frame-decoration {
    position: absolute;
    font-size: 1.5rem;
    color: var(--color-golden);
    text-shadow: 0 2px 10px rgba(212, 168, 75, 0.5);
    animation: sparkle 2s ease-in-out infinite;
}

.frame-decoration.top-left {
    top: -5px;
    left: 15px;
}

.frame-decoration.top-right {
    top: -5px;
    right: 15px;
    animation-delay: 0.5s;
}

.frame-decoration.bottom-left {
    bottom: -5px;
    left: 15px;
    animation-delay: 1s;
}

.frame-decoration.bottom-right {
    bottom: -5px;
    right: 15px;
    animation-delay: 1.5s;
}

/* Hero Name & Tagline */
.hero-name {
    font-family: var(--font-script);
    font-size: 3rem;
    font-weight: 400;
    color: var(--color-dark);
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--color-dark-purple);
    font-weight: 400;
    text-transform: uppercase;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
}

.btn {
    padding: 0.75rem 2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-golden);
    color: var(--color-dark);
    border-color: var(--color-golden);
}

.btn-primary:hover {
    background-color: var(--color-golden-light);
    border-color: var(--color-golden-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-dark);
    border-color: var(--color-dark);
}

.btn-secondary:hover {
    background-color: var(--color-dark);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Featured Section */
.featured-section {
    background-color: var(--color-cream);
    padding: 4rem 2rem;
}

.section-title {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--color-dark);
    margin-bottom: 2.5rem;
    text-align: left;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.video-thumbnail {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.2rem;
    aspect-ratio: 16/10;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.08);
    filter: brightness(0.8);
}

.thumbnail-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

.play-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-dark);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.play-icon i {
    margin-left: 4px;
}

.video-thumbnail:hover .play-icon {
    transform: scale(1.15);
    background: var(--color-golden);
    color: var(--color-white);
}

.youtube-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 28px;
    background: #FF0000;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.video-thumbnail:hover .youtube-badge {
    transform: scale(1.1);
}

.featured-card {
    text-align: left;
}

.card-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    aspect-ratio: 16/10;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card-image:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.play-button:hover {
    background-color: var(--color-golden);
    transform: translate(-50%, -50%) scale(1.1);
}

.mini-play {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: var(--color-peach);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 0.7rem;
}

.featured-card h3 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.featured-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}


/* About Section */
.about-section {
    background: linear-gradient(180deg, var(--color-lavender) 0%, var(--color-cream) 100%);
    padding: 4rem 2rem;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--color-golden);
    border-radius: 12px;
    z-index: -1;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}


/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--color-sunset-start) 0%, var(--color-dark-purple) 100%);
    padding: 4rem 2rem;
}

.contact-section .section-title {
    color: var(--color-cream);
    text-align: center;
}

.contact-content-centered {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-btn i {
    font-size: 1.3rem;
}

.email-btn {
    background: linear-gradient(135deg, var(--color-golden) 0%, var(--color-golden-light) 100%);
    color: var(--color-dark);
}

.email-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 168, 75, 0.4);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.contact-social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.social-circle.youtube {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
}

.social-circle.instagram {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
}

.social-circle:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background-color: var(--color-cream);
    padding: 2rem 2rem;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 0.3rem;
}

.footer-tagline {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

.footer-sparkle {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 2rem;
    color: var(--color-golden);
    animation: sparkle 2s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 1.5rem;
    }
    
    .image-frame {
        width: 260px;
        height: 260px;
    }
    
    .polaroid {
        width: 180px;
    }
    
    .polaroid img {
        height: 160px;
    }
    
    .hero-name {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo {
        font-size: 2.5rem;
    }
    
    .nav-list {
        flex-wrap: wrap;
        gap: 0.25rem;
    }
    
    .nav-link {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .side-polaroids {
        flex-direction: row;
        gap: 1rem;
    }
    
    .side-polaroids.left-side {
        order: 2;
    }
    
    .hero-center {
        order: 1;
    }
    
    .side-polaroids.right-side {
        order: 3;
    }
    
    .image-frame {
        width: 250px;
        height: 250px;
    }
    
    .polaroid {
        width: 140px;
    }
    
    .polaroid img {
        height: 120px;
    }
    
    .hero-name {
        font-size: 2.2rem;
    }
    
    .hero-tagline {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1rem;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .side-polaroids {
        flex-direction: row;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .side-polaroids.left-side {
        order: 2;
    }
    
    .hero-center {
        order: 1;
    }
    
    .side-polaroids.right-side {
        order: 3;
    }
    
    .polaroid {
        width: 110px;
    }
    
    .polaroid img {
        height: 95px;
    }
    
    .image-frame {
        width: 200px;
        height: 200px;
        border-width: 4px;
    }
    
    .hero-name {
        font-size: 1.8rem;
    }
    
    .hero-tagline {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    
    .frame-decoration {
        font-size: 1.2rem;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.featured-hero-image {
    animation: fadeInUp 0.8s ease-out backwards;
    animation-delay: 0.2s;
}

.hero-name {
    animation: fadeInUp 0.8s ease-out backwards;
    animation-delay: 0.4s;
}

.hero-tagline {
    animation: fadeInUp 0.8s ease-out backwards;
    animation-delay: 0.5s;
}

.polaroid {
    animation: fadeInUp 0.8s ease-out backwards;
}

.polaroid-1 { animation-delay: 0.3s; }
.polaroid-2 { animation-delay: 0.5s; }
.polaroid-3 { animation-delay: 0.4s; }
.polaroid-4 { animation-delay: 0.6s; }
