* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF69B4;
    --secondary-color: #FFB6C1;
    --accent-color: #FF1493;
    --dark-pink: #C71585;
    --light-pink: #FFF0F5;
    --purple-pink: #DA70D6;
    --hot-pink: #FF10F0;
    --text-dark: #333;
    --text-light: #666;
    --gradient: linear-gradient(135deg, #FF69B4 0%, #DA70D6 50%, #FFB6C1 100%);
    --gradient-hero: linear-gradient(135deg, #FFF0F5 0%, #FFE4E6 50%, #FFB6C9 100%);
    --bow-pattern: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><path fill="%23FFB6C1" d="M20,50 Q20,20 50,20 T80,50 T50,80 T20,50 Z"/></svg>');
}

.logo {
    display: flex;
    align-items: center;
    height: 80px;
    overflow: hidden;
}

.logo img {
    height: 80px;
    width: 80px;
    display: block;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: #FFF0F5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 182, 193, 0.95) 100%);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(255, 105, 180, 0.3);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 3px solid var(--primary-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(135deg, #FF1493 0%, #FF69B4 50%, #DA70D6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 105, 180, 0.5);
    font-family: 'Georgia', serif;
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: var(--light-pink);
    transform: scale(1.1);
}

.nav-menu a::before {
    content: '💖';
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-right: 0.5rem;
}

.nav-menu a:hover::before {
    opacity: 1;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    transition: width 0.3s ease;
    border-radius: 10px;
}

.nav-menu a:hover::after {
    width: 70%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #FFF0F5 0%, #FFE4E6 50%, #FFB6C9 100%);
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(255, 182, 193, 0.1) 50px, rgba(255, 182, 193, 0.1) 100px),
        repeating-linear-gradient(-45deg, transparent, transparent 50px, rgba(255, 105, 180, 0.1) 50px, rgba(255, 105, 180, 0.1) 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-item {
    position: absolute;
    font-size: 4rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.4;
    filter: drop-shadow(0 0 10px rgba(255, 105, 180, 0.3));
}

.floating-item:nth-child(1)::before { content: '💕'; }
.floating-item:nth-child(2)::before { content: '✨'; }
.floating-item:nth-child(3)::before { content: '💖'; }

.floating-item:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.floating-item:nth-child(2) {
    left: 50%;
    animation-delay: 2s;
}

.floating-item:nth-child(3) {
    left: 80%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FF1493 0%, #FF69B4 50%, #DA70D6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1s ease-in;
    font-family: 'Georgia', serif;
    font-style: italic;
    text-shadow: 0 0 30px rgba(255, 105, 180, 0.3);
    filter: drop-shadow(0 0 20px rgba(218, 112, 214, 0.3));
}

.hero-title::before {
    content: '👸 ';
}

.hero-title::after {
    content: ' 👸';
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    animation: fadeIn 1.5s ease-in;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeIn 2s ease-in;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 105, 180, 0.4), 
                0 0 0 3px rgba(255, 182, 193, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '💖';
    margin-right: 0.5rem;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 105, 180, 0.5),
                0 0 0 5px rgba(255, 182, 193, 0.2);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    position: relative;
}

.btn-secondary::before {
    content: '✨';
    margin-right: 0.5rem;
}

.btn-secondary:hover {
    background: var(--gradient);
    color: white;
    box-shadow: 0 8px 30px rgba(255, 105, 180, 0.4);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
    font-style: italic;
    position: relative;
}

.section-header h2::before {
    content: '🌸 ';
}

.section-header h2::after {
    content: ' 🌸';
}

.underline {
    width: 100px;
    height: 4px;
    background: var(--gradient);
    margin: 0 auto;
    border-radius: 2px;
}

.section-description {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* About Section */
.about-section {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.placeholder-image {
    width: 300px;
    height: 300px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    box-shadow: 
        0 0 0 10px rgba(255, 182, 193, 0.3),
        0 0 0 20px rgba(255, 105, 180, 0.2),
        0 20px 50px rgba(255, 105, 180, 0.4);
    position: relative;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 
            0 0 0 10px rgba(255, 182, 193, 0.3),
            0 0 0 20px rgba(255, 105, 180, 0.2),
            0 20px 50px rgba(255, 105, 180, 0.4);
    }
    50% {
        box-shadow: 
            0 0 0 15px rgba(255, 182, 193, 0.4),
            0 0 0 30px rgba(255, 105, 180, 0.3),
            0 30px 70px rgba(255, 105, 180, 0.5);
    }
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.intro-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(135deg, #FFF0F5 0%, #FFE4E6 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(255, 105, 180, 0.3),
        0 0 0 3px rgba(255, 182, 193, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 4px solid transparent;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: var(--gradient);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 15px 40px rgba(255, 105, 180, 0.5),
        0 0 0 5px rgba(255, 182, 193, 0.4);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-placeholder {
    padding: 3rem;
    text-align: center;
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4e6 100%);
}

.gallery-placeholder span {
    font-size: 5rem;
    display: block;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.gallery-placeholder p {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: bold;
    font-style: italic;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4e6 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: linear-gradient(135deg, #FFF0F5 0%, #FFE4E6 100%);
    padding: 2rem;
    border-radius: 25px;
    box-shadow: 
        0 10px 30px rgba(255, 105, 180, 0.2),
        inset 0 0 0 4px rgba(255, 182, 193, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 3px solid var(--secondary-color);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: 'Georgia', serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 5px rgba(255, 182, 193, 0.2);
    transform: scale(1.02);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: linear-gradient(135deg, #FFF0F5 0%, #FFE4E6 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.2);
    border: 3px solid rgba(255, 182, 193, 0.5);
}

.info-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 105, 180, 0.4);
    border-color: var(--primary-color);
}

.info-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: spin 3s linear infinite;
    filter: drop-shadow(0 0 10px rgba(255, 105, 180, 0.3));
}

@keyframes spin {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--text-light);
}

.success-message {
    background: linear-gradient(135deg, #90EE90 0%, #98FB98 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(0, 255, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.error-message {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff3366 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(255, 51, 102, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.5);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #da70d6 0%, #c71585 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    border-top: 5px solid var(--primary-color);
    position: relative;
}

.footer::before {
    content: '💖✨💖✨💖✨💖';
    font-size: 1.5rem;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-link {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
    }

    .nav-menu {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer .container {
        flex-direction: column;
        gap: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================
   PAGE LOADING SCREEN
========================= */
body.is-loading {
    overflow: hidden;
}

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFB6C9;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 1;
    visibility: visible;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-icon {
    font-size: 5rem;
    display: inline-block;
    animation: loader-pulse 1.4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 105, 180, 0.5));
}

@keyframes loader-pulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.15) rotate(8deg); }
}

.loader-text {
    margin-top: 1rem;
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 1.4rem;
    font-weight: bold;
    background: linear-gradient(135deg, #FF1493 0%, #FF69B4 50%, #DA70D6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loader-dots {
    margin-top: 1.25rem;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.loader-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gradient);
    animation: loader-bounce 1.4s ease-in-out infinite;
}

.loader-dots span:nth-child(2) { animation-delay: 0.2s; }
.loader-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes loader-bounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}
