:root {
    --primary-color: #F8B7CD; /* Soft pink */
    --secondary-color: #B5A3CC; /* Soft violet */
    --dark-color: #4A4063; /* Deep violet */
    --light-color: #FDF6F9; /* Very light pink */
    --accent-color: #E7BBE3; /* Light lavender */
    --text-dark: #2D243B; /* Dark purple for text */
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--light-color);
    background-image: linear-gradient(45deg, var(--light-color) 90%, #F3E6EE 100%);
    line-height: 1.6;
}

.nav-container {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(181, 163, 204, 0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

header {
    background: linear-gradient(135deg, var(--dark-color), #635380);
    color: var(--light-color);
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

h1 {
    margin: 0;
    font-size: 2.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h2 {
    text-align: center;
    color: var(--dark-color);
    font-size: 2rem;
    margin: 2rem 0;
}

/* Adjust hero section to account for fixed navbar */
.hero {
    padding-top: 60px;
    height: 80vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(74, 64, 99, 0.3), rgba(248, 183, 205, 0.3));
}

.hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.hero h1 {
    font-size: 4rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease-out;
}

.hero p {
    font-size: 1.5rem;
    margin: 1rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.gallery-container {
    columns: 3 350px;
    column-gap: 2rem;
    padding: 2rem;
    max-width: 1800px;
    margin: 0 auto;
}

.gallery-card {
    break-inside: avoid;
    margin-bottom: 2rem;
    position: relative;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(181, 163, 204, 0.2);
    transition: all 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(181, 163, 204, 0.3);
}

.gallery-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.gallery-content {
    padding: 1.5rem;
    background: white;
}

.gallery-date {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.gallery-title {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-description {
    font-size: 0.9rem;
    color: #635380;
    line-height: 1.5;
}

footer {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--dark-color), #635380);
    color: var(--light-color);
    margin-top: 3rem;
}

.about-section {
    padding: 5rem 2rem;
    background: linear-gradient(45deg, var(--light-color), white);
}

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

.highlight-text {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.love-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.stat-label {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.timeline-section {
    padding: 5rem 2rem;
    background: linear-gradient(45deg, var(--light-color), white);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary-color);
}

.timeline-item {
    margin: 2rem 0;
    position: relative;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: calc(50% - 30px);
    margin-left: auto;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: auto;
}

.timeline-date {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.categories-section {
    padding: 5rem 2rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .timeline::before {
        left: 0;
    }
    
    .timeline-content {
        width: calc(100% - 30px);
        margin-left: 30px !important;
    }
    
    .love-stats {
        flex-direction: column;
        gap: 2rem;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1; transform: translateY(0);
    }
}