/* CSS Variables - Gold & Black Theme */
:root {
    --primary-gold: #d4af37;
    --gold-light: #f7d654;
    --gold-dark: #b8941f;
    --pink-primary: #ff6b9d;
    --pink-light: #ff8fab;
    --black-primary: #000000;
    --black-secondary: #1a1a1a;
    --black-light: #2c2c2c;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-medium: #666666;
    --text-gold: #d4af37;
    --text-white: #ffffff;
    --text-black: #000000;
    --shadow-gold: 0 4px 15px rgba(212, 175, 55, 0.3);
    --shadow-black: 0 4px 15px rgba(0, 0, 0, 0.2);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f7d654 100%);
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-white);
    background: var(--black-primary);
    overflow-x: hidden;
    position: relative;
}

/* Remove all underlines */
a {
    text-decoration: none !important;
}

/* Animated Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 60% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
        var(--black-primary);
    animation: float-bg 15s ease-in-out infinite;
}

@keyframes float-bg {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 1;
    }
    25% { 
        transform: translateY(-20px) rotate(1deg);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 1;
    }
    75% { 
        transform: translateY(20px) rotate(-1deg);
        opacity: 0.9;
    }
}

/* Logo Styles with Fallback */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img, .hero-logo-img, .footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
}

.hero-logo-img {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
}

.footer-logo-img {
    width: 35px;
    height: 35px;
    border-radius: 6px;
}

/* Logo Fallback Styles */
.logo-fallback, .hero-logo-fallback, .footer-logo-fallback {
    display: none;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
}

.logo-d, .hero-logo-d, .footer-logo-d {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--text-black);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: var(--shadow-gold);
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
}

.hero-logo-d {
    width: 60px;
    height: 60px;
    font-size: 2rem;
    border-radius: 15px;
    margin-right: 10px;
}

.hero-logo-sub {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-left: 5px;
}

.footer-logo-d {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
    margin-right: 8px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-gold);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-gold);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0;
    border-bottom: 1px solid var(--primary-gold);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-white);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-gold);
}

.princess-link {
    background: var(--gradient-gold);
    color: var(--text-black) !important;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-white);
    max-width: 800px;
    padding: 0 2rem;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 450;
    margin-bottom: 1rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap; /* Keeps title on single line */
    line-height: 1.2;
}

/* Responsive title adjustment */
@media (max-width: 768px) {
    .hero-title {
        white-space: normal; /* Allow wrapping on small screens */
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.5rem, 10vw, 2rem);
        line-height: 1.1;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    color: var(--primary-gold);
}

.hero-tagline {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--text-black);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--text-black);
}

.btn-princess {
    background: linear-gradient(135deg, var(--pink-primary) 0%, var(--pink-light) 100%);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.btn-princess:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
.section {
    padding: 5rem 0;
    position: relative;
}

.section:nth-child(even) {
    background: rgba(26, 26, 26, 0.8);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-white);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Princess Banner - NO Pink Background */
.princess-banner {
    padding: 3rem 0;
    text-align: center;
    color: var(--text-white);
    background: var(--black-secondary);
}

.princess-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.princess-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Products Section - 4 in straight line */
.products {
    background: rgba(26, 26, 26, 0.8);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-card {
    background: var(--black-light);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--text-white);
    opacity: 0.8;
    line-height: 1.6;
}

/* Occasions Section - 6 in straight line */
.occasions-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.occasion-card {
    background: var(--black-light);
    padding: 2rem 1rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.occasion-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.occasion-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--text-black);
}

.occasion-card h4 {
    font-family: var(--font-heading);
    color: var(--primary-gold);
    font-size: 1rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.2rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-white);
    opacity: 0.9;
    line-height: 1.8;
}

.about-text blockquote {
    background: var(--black-light);
    padding: 1.5rem;
    border-left: 4px solid var(--primary-gold);
    margin: 2rem 0;
    font-style: italic;
    color: var(--primary-gold);
}

.about-features {
    display: grid;
    gap: 1.5rem;
}

.feature-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--black-light);
    border-radius: 10px;
    border: 1px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-gold);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-black);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-card h4 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-white);
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background: rgba(26, 26, 26, 0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--black-light);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-white);
    opacity: 0.9;
    line-height: 1.8;
}

.testimonial-author strong {
    color: var(--primary-gold);
    display: block;
}

.testimonial-author span {
    color: var(--text-white);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-white);
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--black-light);
    border-radius: 10px;
    border: 1px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-gold);
}

.method-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.2rem;
}

.whatsapp .method-icon {
    background: #25D366;
}

.instagram .method-icon {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.email .method-icon {
    background: #EA4335;
}

.method-info h4 {
    color: var(--primary-gold);
    margin-bottom: 0.25rem;
}

.method-info p {
    color: var(--text-white);
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Form */
.contact-form-container {
    background: var(--black-light);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--primary-gold);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--primary-gold);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--black-secondary);
    color: var(--text-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-light);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Newsletter Section */
.newsletter {
    background: var(--black-secondary);
    color: var(--text-white);
    padding: 3rem 0;
    text-align: center;
}

.newsletter-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.newsletter-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid var(--primary-gold);
    border-radius: 25px 0 0 25px;
    font-size: 1rem;
    background: var(--black-light);
    color: var(--text-white);
}

.newsletter-form button {
    border-radius: 0 25px 25px 0;
    white-space: nowrap;
}

/* Footer */
.footer {
    background: var(--black-primary);
    color: var(--text-white);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--primary-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-info p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    color: var(--text-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.footer-column a {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--primary-gold);
}

.footer-column p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.8;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .occasions-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
        padding: 2rem 0;
        gap: 1rem;
        border-top: 1px solid var(--primary-gold);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form input,
    .newsletter-form button {
        border-radius: 25px;
    }

    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .occasions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .occasions-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}
