:root {
    --primary: #FF2E63;        /* Hot Pink - excitement, celebration */
    --secondary: #FCEE09;      /* Neon Yellow - high energy, visibility */
    --accent: #3A86FF;         /* Bright Blue - modern and vibrant */
    --background: #fff5fe;     /* Dark Navy - makes neon pop */
    --text-dark: #000000;      /* Soft Light - contrasts dark bg */
    --text-light: #3b002c;     /* Pure White - optimal on vivid colors */
    --peach: #FF9F1C;          /* Orange - energetic highlight */
    --mint: #6EEB83;           /* Lush Mint - contrast and freshness */
}

/* Marriage Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--background);
    overflow-x: hidden;
}

/* Navigation */
.page-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 214, 0, 0.95); /* Bright yellow with opacity */
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(255, 111, 97, 0.1);
    transition: all 0.3s ease;
}

.nav-home {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-home:hover {
    color: var(--accent);
}

.nav-arrows {
    display: flex;
    gap: 1rem;
}

.nav-arrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: rgba(255, 111, 97, 0.1);
}

.nav-arrow:hover {
    background: var(--primary);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="grad1" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23FF6F61" stop-opacity="0.6"/><stop offset="100%" stop-color="%23FFD600" stop-opacity="0.2"/></radialGradient><radialGradient id="grad2" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%236C63FF" stop-opacity="0.6"/><stop offset="100%" stop-color="%234477FF" stop-opacity="0.2"/></radialGradient><radialGradient id="grad3" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23FFB347" stop-opacity="0.6"/><stop offset="100%" stop-color="%23FF9F1C" stop-opacity="0.2"/></radialGradient><pattern id="confetti" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="8" fill="url(%23grad1)"/><rect x="40" y="40" width="10" height="10" fill="url(%23grad2)" rx="2"/><path d="M50,10 l5,10 h-10 z" fill="url(%23grad3)"/></pattern></defs><rect width="100" height="100" fill="url(%23confetti)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    z-index: 2;
    position: relative;
    max-width: 1000px;
    padding: 0 2rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.2;
    animation: slideInUp 1s ease-out;
    color: var(--secondary);
    text-shadow: 2px 2px 8px rgba(34,34,59,0.2);
}

.title-line {
    display: block;
    opacity: 0.9;
}

.title-highlight {
    display: block;
    background: linear-gradient(45deg, var(--secondary), var(--peach));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: slideInUp 1s ease-out 0.3s both;
    font-family: 'Dancing Script', cursive;
    color: var(--peach);
}

.hero-image {
    margin-top: 3rem;
    animation: slideInUp 1s ease-out 0.6s both;
}

.hero-image img {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Content Sections */
.content-section {
    padding: 5rem 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--accent);
    max-width: 600px;
    margin: 0 auto;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.text-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.text-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.text-content strong {
    color: var(--primary);
    font-weight: 600;
}

.image-content img {
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 4px solid #FFFFFF;
}

.image-content img:hover {
    transform: scale(1.05);
}

/* Feature Lists */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 214, 0, 0.08);
    border-radius: 10px;
    border-left: 4px solid var(--accent);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 0.2rem;
}

.feature-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #7f8c8d;
    margin: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--background);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(255, 111, 97, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    background: var(--peach);
    color: var(--text-dark);
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.service-card p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Themes Showcase */
.themes-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.theme-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(108, 99, 255, 0.1);
    transition: transform 0.3s ease;
}

.theme-card:hover {
    transform: translateY(-10px);
}

.theme-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.theme-info {
    padding: 1.5rem;
    background: var(--background);
}

.theme-info h3 {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.theme-info p {
    color: var(--primary);
}

/* Cake Options */
.cake-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.cake-option {
    padding: 1rem;
    background: rgba(255, 214, 0, 0.08);
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.cake-option:hover {
    border-color: var(--primary);
    background: rgba(255, 111, 97, 0.1);
}

.cake-option h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.cake-option p {
    color: var(--accent);
    font-size: 0.9rem;
    margin: 0;
}

/* Entertainment Options */
.entertainment-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.entertainment-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(108, 99, 255, 0.08);
    border-radius: 10px;
}

.entertainment-item i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 0.2rem;
}

.entertainment-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.entertainment-item p {
    color: var(--accent);
    margin: 0;
}

/* Venue Highlights */
.venue-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.venue-item {
    padding: 1rem;
    background: rgba(67, 233, 123, 0.08);
    border-radius: 10px;
    border-left: 4px solid var(--mint);
}

.venue-item h4 {
    color: var(--mint);
    margin-bottom: 0.5rem;
}

.venue-item p {
    color: var(--primary);
    margin: 0;
}

/* Photo Services */
.photo-services {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 111, 97, 0.08);
    border-radius: 10px;
}

.service-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 0.2rem;
}

.service-item h4 {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.service-item p {
    color: var(--primary);
    margin: 0;
}

/* Planning Steps */
.planning-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.step p {
    color: var(--accent);
}



/* Footer */
/* Footer */
.main-footer {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-family: "Roboto Serif", serif;
}

.footer-section p,
.footer-section ul li a {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.footer-section p a {
    text-decoration: none;
    color: #a7c5bd;
    font-size: 12px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-100px) translateX(-100px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .nav-arrows {
        display: none;
        gap: 0.5rem;
    }
    
    .themes-showcase {
        grid-template-columns: 1fr;
    }
    
    .planning-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    .hero-image img {
        height: 250px;
    }
    
    .image-content img {
        height: 250px;
    }
}