/* Magical Unicorn World Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Neue', cursive;
    background: linear-gradient(135deg, #ffb6c1, #ffc0cb, #ffb6c1, #ff69b4);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Octovia Page */
body.octovia-page {
    background: linear-gradient(160deg, #fff5f0, #ffe8dc, #ffd6c8);
    animation: none;
}

body.octovia-page::before,
body.octovia-page::after {
    display: none;
}

body.octovia-page .site-nav {
    background: rgba(255, 255, 255, 0.9);
    border-bottom-color: #e85d04;
}

body.octovia-page .site-nav a {
    color: #c44d00;
    border-color: #e85d04;
}

body.octovia-page .site-nav a:hover {
    background: linear-gradient(45deg, #e85d04, #f48c06);
    color: white;
}

.octovia-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 70px);
    padding: 2rem 1.5rem 4rem;
    position: relative;
    z-index: 2;
}

.octovia-name {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(4rem, 15vw, 9rem);
    color: #c44d00;
    text-align: center;
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 0 rgba(232, 93, 4, 0.15);
}

.octovia-photo {
    margin: 0;
    max-width: 520px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(196, 77, 0, 0.2);
    border: 6px solid #fff;
}

.octovia-photo img {
    display: block;
    width: 100%;
    height: auto;
}

body.party7-page {
    background: url('images/beach.jpg') center center / cover no-repeat fixed;
    animation: none;
}

body.party7-page::before,
body.party7-page::after {
    display: none;
}

body.party7-page .sparkles::before,
body.party7-page .sparkles::after {
    content: '🌺';
}

body.party7-page .site-nav {
    background: rgba(255, 255, 255, 0.85);
    border-bottom-color: #e85d04;
}

body.party7-page .site-nav a {
    color: #0077b6;
    border-color: #48cae4;
}

body.party7-page .site-nav a:hover,
body.party7-page .site-nav a.active {
    background: linear-gradient(45deg, #0077b6, #00b4d8);
    color: white;
}

body.party7-page .luau-header {
    background: linear-gradient(45deg, #0077b6, #00b4d8, #e85d04);
    border-bottom-color: #e85d04;
}

body.party7-page section {
    background: rgba(255, 255, 255, 0.92);
    border-color: #48cae4;
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.25);
}

body.party7-page section h2 {
    color: #0077b6;
    text-shadow: 2px 2px 4px rgba(0, 180, 216, 0.3);
}

body.party7-page .welcome-section p,
body.party7-page .party-tagline {
    text-align: center;
    font-size: 1.3rem;
    color: #e85d04;
    font-weight: bold;
}

body.party7-page .party-hero .party-age {
    color: #0077b6;
}

body.party7-page .octa-spotlight {
    text-align: center;
    padding: 2.5rem 1.5rem;
    overflow: visible;
}

body.party7-page .octa-spotlight__tag {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.4rem, 4vw, 2rem);
    color: #e85d04;
    margin-bottom: 1.5rem;
    animation: octaTagWiggle 2.5s ease-in-out infinite;
}

body.party7-page .octa-spotlight__stage {
    position: relative;
    display: inline-block;
    margin: 0 auto 1.25rem;
}

body.party7-page .octa-spotlight__frame {
    margin: 0;
    padding: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0077b6, #00b4d8, #e85d04, #ffd166, #0077b6);
    background-size: 300% 300%;
    animation: octaRingSpin 4s linear infinite, octaBounce 3s ease-in-out infinite;
    box-shadow:
        0 0 0 4px #fff,
        0 15px 40px rgba(0, 119, 182, 0.45),
        0 0 60px rgba(232, 93, 4, 0.25);
}

body.party7-page .octa-spotlight__frame img {
    display: block;
    width: clamp(200px, 45vw, 280px);
    height: clamp(200px, 45vw, 280px);
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
}

body.party7-page .octa-spotlight__float {
    position: absolute;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    filter: drop-shadow(0 3px 8px rgba(0, 119, 182, 0.4));
    pointer-events: none;
    animation: octaOrbit 4s ease-in-out infinite;
}

body.party7-page .octa-spotlight__float--1 { top: -8%; left: 5%; animation-delay: 0s; }
body.party7-page .octa-spotlight__float--2 { top: 10%; right: -12%; animation-delay: 0.6s; }
body.party7-page .octa-spotlight__float--3 { bottom: 5%; right: 0; animation-delay: 1.2s; }
body.party7-page .octa-spotlight__float--4 { bottom: -5%; left: 15%; animation-delay: 1.8s; }
body.party7-page .octa-spotlight__float--5 { top: 0; left: -10%; animation-delay: 2.4s; }

body.party7-page .octa-spotlight__caption {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 700;
    color: #0077b6;
    max-width: 420px;
    margin: 0 auto;
    line-height: 1.5;
}

@keyframes octaRingSpin {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes octaBounce {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
}

@keyframes octaTagWiggle {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-2deg) scale(1.02); }
    75% { transform: rotate(2deg) scale(1.02); }
}

@keyframes octaOrbit {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    33% { transform: translateY(-14px) rotate(12deg) scale(1.15); }
    66% { transform: translateY(-6px) rotate(-8deg) scale(0.95); }
}

body.party7-page .detail-card {
    background: linear-gradient(135deg, #caf0f8, #ade8f4);
    border-color: #48cae4;
}

body.party7-page .detail-card h3 {
    color: #0077b6;
    font-size: 2rem;
    font-weight: bold;
}

body.party7-page .detail-card p {
    color: #023e8a;
    font-size: 1.35rem;
    font-weight: 700;
}

body.party7-page .detail-link,
body.party7-page .map-link {
    display: inline-block;
    margin-top: 0.75rem;
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    color: #e85d04;
    text-decoration: none;
    transition: color 0.3s ease;
}

body.party7-page .detail-link:hover,
body.party7-page .map-link:hover {
    color: #0077b6;
}

body.party7-page .location-address {
    text-align: center;
    font-size: 1.3rem;
    color: #023e8a;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 1rem;
}

body.party7-page .map-link {
    display: block;
    text-align: center;
    font-size: 1.2rem;
}

body.party7-page .location-list {
    max-width: 600px;
}

body.party7-page .location-maps {
    text-align: center;
}

body.party7-page .location-map-caption {
    font-size: 1.15rem;
    color: #023e8a;
    font-weight: 600;
    margin-bottom: 1.25rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

body.party7-page .location-map {
    margin: 0 auto;
    max-width: 900px;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid #48cae4;
    box-shadow: 0 12px 32px rgba(0, 119, 182, 0.3);
}

body.party7-page .location-map img {
    display: block;
    width: 100%;
    height: auto;
}

body.party7-page .location-maps-cta {
    text-align: center;
}

body.party7-page .maps-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0.5rem auto 1.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #0077b6, #00b4d8);
    color: #fff;
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    text-decoration: none;
    border-radius: 50px;
    border: 3px solid #fff;
    box-shadow: 0 8px 24px rgba(0, 119, 182, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.party7-page .maps-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 119, 182, 0.55);
    color: #fff;
}

body.party7-page .maps-cta__icon {
    font-size: 1.4em;
}

body.party7-page .maps-cta__arrow {
    font-size: 1.2em;
}

body.party7-page .parking-note {
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #023e8a;
    font-weight: 600;
    text-align: center;
}

body.party7-page .party-list li {
    color: #0077b6;
    border-bottom-color: #90e0ef;
}

body.party7-page .tropical-section {
    text-align: center;
}

body.party7-page .tropical-parade {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

body.party7-page .tropical-parade .tropical-item {
    font-size: 4rem;
    animation: tropicalSway 3s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0, 119, 182, 0.4));
    cursor: pointer;
}

body.party7-page .tropical-parade .tropical-item:nth-child(1) { animation-delay: 0s; }
body.party7-page .tropical-parade .tropical-item:nth-child(2) { animation-delay: 0.4s; }
body.party7-page .tropical-parade .tropical-item:nth-child(3) { animation-delay: 0.8s; }
body.party7-page .tropical-parade .tropical-item:nth-child(4) { animation-delay: 1.2s; }
body.party7-page .tropical-parade .tropical-item:nth-child(5) { animation-delay: 1.6s; }
body.party7-page .tropical-parade .tropical-item:nth-child(6) { animation-delay: 2s; }
body.party7-page .tropical-parade .tropical-item:nth-child(7) { animation-delay: 2.4s; }

@keyframes tropicalSway {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(5deg); }
    75% { transform: translateY(-8px) rotate(-5deg); }
}

body.party7-page .luau-footer {
    background: linear-gradient(45deg, #0077b6, #00b4d8, #e85d04);
}

body.party7-page .rsvp-section {
    text-align: center;
}

body.party7-page .rsvp-intro {
    font-size: 1.2rem;
    color: #023e8a;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

body.party7-page .rsvp-form {
    max-width: 420px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

body.party7-page .rsvp-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

body.party7-page .rsvp-label {
    font-family: 'Fredoka One', cursive;
    color: #0077b6;
    font-size: 1.1rem;
}

body.party7-page .rsvp-optional {
    font-family: 'Comic Neue', cursive;
    font-size: 0.9rem;
    font-weight: 400;
    color: #48cae4;
}

body.party7-page .rsvp-form input[type="text"],
body.party7-page .rsvp-form input[type="number"],
body.party7-page .rsvp-form textarea {
    font-family: 'Comic Neue', cursive;
    font-size: 1.1rem;
    padding: 0.65rem 1rem;
    border: 2px solid #48cae4;
    border-radius: 12px;
    background: #fff;
    color: #023e8a;
    resize: vertical;
}

body.party7-page .rsvp-form input:focus,
body.party7-page .rsvp-form textarea:focus {
    outline: none;
    border-color: #0077b6;
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.25);
}

body.party7-page .rsvp-attendance {
    border: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

body.party7-page .rsvp-attendance legend {
    margin-bottom: 0.5rem;
    padding: 0;
}

body.party7-page .rsvp-choice {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #caf0f8, #ade8f4);
    border: 2px solid #48cae4;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    color: #023e8a;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

body.party7-page .rsvp-choice:hover {
    border-color: #0077b6;
    transform: translateX(4px);
}

body.party7-page .rsvp-choice input {
    width: 1.1rem;
    height: 1.1rem;
    accent-color: #e85d04;
}

body.party7-page .rsvp-submit {
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    padding: 0.85rem 1.5rem;
    border: none;
    border-radius: 25px;
    background: linear-gradient(45deg, #0077b6, #00b4d8);
    color: white;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 5px 15px rgba(0, 119, 182, 0.35);
}

body.party7-page .rsvp-submit:hover:not(:disabled) {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 119, 182, 0.45);
}

body.party7-page .rsvp-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

body.party7-page .rsvp-message {
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.75rem;
    border-radius: 12px;
}

body.party7-page .rsvp-message--success {
    color: #0077b6;
    background: #caf0f8;
    border: 2px solid #48cae4;
}

body.party7-page .rsvp-message--error {
    color: #9d0208;
    background: #ffe5e5;
    border: 2px solid #e85d04;
}

body.party7-page .rsvp-confirm-dialog {
    padding: 0;
    border: none;
    border-radius: 20px;
    max-width: 90vw;
    width: 420px;
    background: linear-gradient(135deg, #caf0f8, #ade8f4);
    border: 4px solid #0077b6;
    box-shadow: 0 20px 50px rgba(0, 119, 182, 0.35);
    font-family: 'Comic Neue', cursive;
    color: #023e8a;
}

body.party7-page .rsvp-confirm-dialog::backdrop {
    background: rgba(2, 62, 138, 0.55);
    backdrop-filter: blur(4px);
}

body.party7-page .rsvp-confirm-dialog__content {
    padding: 2rem 1.75rem 1.5rem;
    text-align: center;
}

body.party7-page .rsvp-confirm-dialog__title {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: #0077b6;
    margin: 0 0 1rem;
}

body.party7-page .rsvp-confirm-dialog__message {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    line-height: 1.5;
}

body.party7-page .rsvp-confirm-dialog__details {
    font-size: 1rem;
    margin: 0 0 1.5rem;
    color: #0077b6;
    font-weight: 600;
}

body.party7-page .rsvp-confirm-dialog__btn {
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 25px;
    background: linear-gradient(45deg, #0077b6, #00b4d8);
    color: white;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 5px 15px rgba(0, 119, 182, 0.35);
}

body.party7-page .rsvp-confirm-dialog__btn:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 119, 182, 0.45);
}

body.party7-page .rsvp-view-link-wrap {
    margin-top: 1.5rem;
    text-align: center;
}

body.party7-page .rsvp-view-link {
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    color: #e85d04;
    text-decoration: none;
    transition: color 0.3s ease;
}

body.party7-page .rsvp-view-link:hover {
    color: #0077b6;
}

body.party7-page .rsvp-list-section {
    text-align: center;
}

body.party7-page .rsvp-summary {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

body.party7-page .rsvp-summary-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 110px;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #caf0f8, #ade8f4);
    border: 2px solid #48cae4;
    border-radius: 15px;
}

body.party7-page .rsvp-summary-value {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: #0077b6;
    line-height: 1.2;
}

body.party7-page .rsvp-summary-label {
    font-size: 0.95rem;
    color: #023e8a;
    font-weight: 600;
}

body.party7-page .rsvp-list-status {
    font-size: 1.2rem;
    color: #023e8a;
    font-weight: 600;
}

body.party7-page .rsvp-list-status--error {
    color: #9d0208;
}

body.party7-page .rsvp-list {
    list-style: none;
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

body.party7-page .rsvp-card {
    padding: 1.25rem;
    border-radius: 15px;
    border: 2px solid #48cae4;
    background: #fff;
}

body.party7-page .rsvp-card--yes {
    border-color: #0077b6;
    background: linear-gradient(135deg, #fff, #e8f9ff);
}

body.party7-page .rsvp-card--no {
    border-color: #90e0ef;
    background: linear-gradient(135deg, #fff, #f5f5f5);
    opacity: 0.85;
}

body.party7-page .rsvp-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

body.party7-page .rsvp-card-name {
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
    color: #0077b6;
    margin: 0;
}

body.party7-page .rsvp-card-status {
    font-weight: 700;
    font-size: 0.95rem;
    color: #e85d04;
    white-space: nowrap;
}

body.party7-page .rsvp-card--no .rsvp-card-status {
    color: #6c757d;
}

body.party7-page .rsvp-card-guests {
    margin-top: 0.5rem;
    color: #023e8a;
    font-weight: 600;
}

body.party7-page .rsvp-card-notes {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: rgba(202, 240, 248, 0.5);
    border-radius: 10px;
    color: #023e8a;
    line-height: 1.5;
}

body.party7-page .rsvp-card-notes-label {
    font-weight: 700;
    color: #0077b6;
}

body.party7-page .rsvp-card-date {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: #48cae4;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Sparkles Background */
.sparkles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.sparkles::before,
.sparkles::after {
    content: '✨';
    position: absolute;
    font-size: 20px;
    animation: sparkle 3s linear infinite;
}

.sparkles::before {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.sparkles::after {
    top: 30%;
    right: 15%;
    animation-delay: 1.5s;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

/* Site Navigation */
.site-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 3px solid #ff69b4;
    position: relative;
    z-index: 3;
}

.site-nav a {
    font-family: 'Fredoka One', cursive;
    color: #ff1493;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    border: 2px solid #ff69b4;
    transition: all 0.3s ease;
}

.site-nav a:hover,
.site-nav a.active {
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    color: white;
}

/* Party Page */
.party-hero .party-age {
    text-align: center;
    font-size: 2rem;
    color: #ff1493;
    font-weight: bold;
    margin: 1rem 0;
}

.lei-row {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.lei-row .lei-flower {
    font-size: 2.5rem;
    animation: leiFloat 3s ease-in-out infinite;
}

.lei-row .lei-flower:nth-child(1) { animation-delay: 0s; }
.lei-row .lei-flower:nth-child(2) { animation-delay: 0.3s; }
.lei-row .lei-flower:nth-child(3) { animation-delay: 0.6s; }
.lei-row .lei-flower:nth-child(4) { animation-delay: 0.9s; }
.lei-row .lei-flower:nth-child(5) { animation-delay: 1.2s; }
.lei-row .lei-flower:nth-child(6) { animation-delay: 1.5s; }
.lei-row .lei-flower:nth-child(7) { animation-delay: 1.8s; }

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

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.detail-card {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffb6c1, #ffc0cb);
    border-radius: 15px;
    border: 3px solid #ff69b4;
}

.detail-card .detail-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.detail-card h3 {
    font-family: 'Fredoka One', cursive;
    color: #ff1493;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.detail-card p {
    color: #ff69b4;
    font-size: 1.35rem;
    font-weight: 700;
}

.party-list {
    list-style: none;
    max-width: 500px;
    margin: 0 auto;
}

.party-list li {
    font-size: 1.3rem;
    color: #ff69b4;
    font-weight: bold;
    padding: 0.75rem 0;
    border-bottom: 2px dashed #ffc0cb;
}

.party-list li:last-child {
    border-bottom: none;
}

/* Header */
.magical-header {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(45deg, #ff69b4, #ff1493, #ff69b4);
    border-bottom: 5px solid #ff1493;
    position: relative;
    z-index: 2;
}

.rainbow-text {
    font-family: 'Fredoka One', cursive;
    font-size: 3.5rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5), 0 0 20px rgba(255,255,255,0.8);
    background: linear-gradient(45deg, #ffffff, #ffd1dc, #ffffff, #ffd1dc);
    background-size: 300% 300%;
    animation: rainbow 4s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

@keyframes rainbow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.unicorn-decoration {
    font-size: 2.5rem;
    margin-top: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Main Content */
main {
    position: relative;
    z-index: 2;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
    border: 3px solid #ff69b4;
}

section h2 {
    font-family: 'Fredoka One', cursive;
    color: #ff1493;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(255, 105, 180, 0.3);
}

.welcome-section p {
    text-align: center;
    font-size: 1.5rem;
    color: #ff69b4;
    font-weight: bold;
}

/* Photo Showcase - New Dynamic Layout */
.photo-showcase {
    text-align: center;
}

.featured-photo-container {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.featured-photo {
    position: relative;
    max-width: 600px;
    width: 100%;
    border: 8px solid #ff69b4;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.4);
    background: linear-gradient(45deg, #ffb6c1, #ffc0cb);
    transition: transform 0.3s ease;
}

.featured-photo:hover {
    transform: scale(1.02);
}

.featured-photo img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

.featured-photo:hover img {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 105, 180, 0.2), rgba(255, 20, 147, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 2.5rem;
}

.featured-photo:hover .photo-overlay {
    opacity: 1;
}

.photo-overlay span {
    animation: float 2s ease-in-out infinite;
}

.photo-overlay .sparkle { animation-delay: 0s; }
.photo-overlay .diamond { animation-delay: 0.5s; }
.photo-overlay .unicorn { animation-delay: 1s; }

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

.photo-info {
    text-align: center;
    max-width: 500px;
}

.photo-info h3 {
    font-family: 'Fredoka One', cursive;
    color: #ff1493;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(255, 105, 180, 0.3);
}

.photo-info p {
    color: #ff69b4;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Photo Navigation */
.photo-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.nav-btn {
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

.nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.6);
}

.photo-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffc0cb;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #ff1493;
    transform: scale(1.3);
}

/* Photo Grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.photo-thumbnail {
    position: relative;
    cursor: pointer;
    border: 4px solid #ff69b4;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    background: linear-gradient(45deg, #ffb6c1, #ffc0cb);
}

.photo-thumbnail:hover {
    transform: scale(1.05) rotate(2deg);
}

.photo-thumbnail img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

.photo-thumbnail:hover img {
    transform: scale(1.1);
}

.photo-thumbnail.active {
    border-color: #ff1493;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.6);
}

/* Unicorn Section */
.unicorn-parade {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.unicorn-parade .unicorn {
    font-size: 4rem;
    animation: unicornDance 3s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(255, 105, 180, 0.5));
}

.unicorn-parade .unicorn:nth-child(1) { animation-delay: 0s; }
.unicorn-parade .unicorn:nth-child(2) { animation-delay: 0.5s; }
.unicorn-parade .unicorn:nth-child(3) { animation-delay: 1s; }
.unicorn-parade .unicorn:nth-child(4) { animation-delay: 1.5s; }
.unicorn-parade .unicorn:nth-child(5) { animation-delay: 2s; }

@keyframes unicornDance {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-15px) rotate(3deg); }
}

/* Diamond Section */
.diamond-section {
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.diamond-section h2 {
    font-size: 3.5rem;
    margin-bottom: 3rem;
}

.diamond-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.diamond-showcase .diamond {
    font-size: 5rem;
    text-align: center;
    animation: diamondSparkle 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.diamond-showcase .diamond:nth-child(odd) {
    animation-delay: 0.5s;
}

@keyframes diamondSparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 1; }
}

/* Footer */
.magical-footer {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 3rem;
}

.footer-sparkles {
    font-size: 2rem;
    margin-top: 1rem;
    animation: sparkle 2s ease-in-out infinite;
}

.footer-copyright {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: normal;
    opacity: 0.85;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 105, 180, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    background: linear-gradient(45deg, #ffb6c1, #ffc0cb);
    border-radius: 20px;
    border: 5px solid #ff69b4;
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.5);
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 3rem;
    font-weight: bold;
    color: #ff1493;
    cursor: pointer;
    z-index: 1001;
}

.close:hover {
    color: #ff69b4;
    transform: scale(1.2);
}

#modalImage {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 3px solid #ff69b4;
    max-height: 70vh;
    object-fit: contain;
}

.modal-sparkles {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
    font-size: 2rem;
}

.modal-sparkles span {
    animation: sparkle 1.5s ease-in-out infinite;
}

.modal-sparkles span:nth-child(1) { animation-delay: 0s; }
.modal-sparkles span:nth-child(2) { animation-delay: 0.3s; }
.modal-sparkles span:nth-child(3) { animation-delay: 0.6s; }
.modal-sparkles span:nth-child(4) { animation-delay: 0.9s; }

/* Responsive Design */
@media (max-width: 768px) {
    .rainbow-text {
        font-size: 2.5rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .featured-photo {
        max-width: 100%;
    }
    
    .featured-photo img {
        height: 300px;
    }
    
    .photo-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .unicorn-parade .unicorn {
        font-size: 3rem;
    }
    
    .diamond-section {
        padding: 3rem 1.5rem;
    }
    
    .diamond-section h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .diamond-showcase {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1.5rem;
    }
    
    .diamond-showcase .diamond {
        font-size: 4rem;
    }
    
    .nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Additional Magical Effects */
.featured-photo::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #ff69b4, #ff1493, #ff69b4);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-photo:hover::before {
    opacity: 1;
}

/* Floating hearts background */
body::before {
    content: '💖';
    position: fixed;
    top: 20%;
    left: 10%;
    font-size: 2rem;
    animation: floatHeart 6s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

body::after {
    content: '💖';
    position: fixed;
    top: 60%;
    right: 15%;
    font-size: 1.5rem;
    animation: floatHeart 8s ease-in-out infinite reverse;
    z-index: 1;
    pointer-events: none;
}

@keyframes floatHeart {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 1; }
} 