/* ============================================
   ALISHA & AADHYA - BEST FRIENDS APP
   Soft & Dreamy + Kawaii + Scrapbook Style
   ============================================ */

/* Color Palette */
:root {
    --baby-blue: #B8D4E3;
    --baby-blue-light: #D6E8F2;
    --pastel-pink: #F8D7E0;
    --pastel-pink-dark: #E8B4C0;
    --lavender: #D8D0E8;
    --lavender-light: #EDE8F5;
    --cream: #FFF8F0;
    --cream-dark: #F5EDE0;
    --soft-yellow: #FFF5D6;
    --mint: #D4E8E0;
    --coral: #F5C4C0;
    
    /* Text colors */
    --text-dark: #5A5A7A;
    --text-medium: #7A7A9A;
    --text-light: #9A9AB8;
    
    /* Accents */
    --heart-pink: #E89AAE;
    --star-gold: #F0D070;
    
    /* Shadows */
    --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 6px 20px rgba(0, 0, 0, 0.12);
    --shadow-lifted: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(135deg, var(--cream) 0%, var(--lavender-light) 50%, var(--baby-blue-light) 100%);
    min-height: 100vh;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Typography */
.main-title, h1 {
    font-family: 'Bubblegum Sans', cursive;
}

.polaroid-caption, .handwritten, .tagline {
    font-family: 'Caveat', cursive;
}

/* Page Wrapper */
.page-wrapper {
    min-height: 100vh;
    position: relative;
    padding: 20px;
}

/* ============================================
   FLOATING DECORATIONS
   ============================================ */
.floating-deco {
    position: fixed;
    font-size: 2rem;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.floating-deco.heart {
    color: var(--heart-pink);
    animation-delay: -2s;
}

.floating-deco.star {
    color: var(--star-gold);
    animation-delay: -4s;
}

.floating-deco.cloud {
    color: var(--baby-blue);
    font-size: 3rem;
    opacity: 0.4;
}

.floating-deco.sparkle {
    animation-delay: -1s;
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
    background: white;
    border-radius: 20px;
    padding: 15px 30px;
    margin: 0 auto 30px;
    max-width: 800px;
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 3px dashed var(--pastel-pink);
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.main-nav a:hover {
    background: var(--pastel-pink);
    transform: translateY(-2px);
}

.main-nav a.active {
    background: var(--baby-blue);
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.nav-tape {
    position: absolute;
    width: 60px;
    height: 25px;
    background: var(--soft-yellow);
    opacity: 0.8;
    top: -10px;
}

.nav-tape.left {
    left: 30px;
    transform: rotate(-5deg);
}

.nav-tape.right {
    right: 30px;
    transform: rotate(5deg);
}

/* ============================================
   HOME PAGE
   ============================================ */
.home-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.title-card {
    background: white;
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    position: relative;
    margin-bottom: 40px;
    border: 4px solid var(--lavender);
}

.tape {
    position: absolute;
    width: 80px;
    height: 30px;
    background: var(--soft-yellow);
    opacity: 0.9;
    top: -12px;
}

.tape-left {
    left: 40px;
    transform: rotate(-8deg);
}

.tape-right {
    right: 40px;
    transform: rotate(8deg);
}

.main-title {
    font-size: 3.5rem;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.name {
    display: inline-block;
}

.alisha-name {
    color: var(--baby-blue);
    text-shadow: 2px 2px 0 var(--pastel-pink);
}

.aadhya-name {
    color: var(--pastel-pink-dark);
    text-shadow: 2px 2px 0 var(--baby-blue);
}

.ampersand {
    color: var(--heart-pink);
    font-size: 2.5rem;
}

.subtitle {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    color: var(--text-medium);
    margin-bottom: 10px;
}

.heart-divider {
    color: var(--heart-pink);
    font-size: 1.5rem;
    letter-spacing: 10px;
    margin: 15px 0;
}

.tagline {
    font-size: 1.4rem;
    color: var(--text-light);
}

/* Polaroid Stack */
.polaroid-stack {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.polaroid {
    background: white;
    padding: 15px 15px 50px;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
    border-radius: 3px;
}

.polaroid:hover {
    transform: scale(1.05) rotate(0deg) !important;
    z-index: 10;
}

.polaroid-1 {
    transform: rotate(-5deg);
}

.polaroid-2 {
    transform: rotate(5deg);
}

.polaroid-photo {
    width: 200px;
    height: 200px;
    background: var(--cream);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--lavender);
}

.polaroid-photo.placeholder {
    background: linear-gradient(135deg, var(--baby-blue-light), var(--pastel-pink));
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.placeholder-text {
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
    color: var(--text-medium);
}

.polaroid-caption {
    text-align: center;
    margin-top: 15px;
    font-size: 1.3rem;
    color: var(--text-dark);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.btn-icon {
    font-size: 1.5rem;
}

.btn-alisha {
    background: linear-gradient(135deg, var(--baby-blue), var(--baby-blue-light));
    color: white;
}

.btn-aadhya {
    background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-pink-dark));
    color: white;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lifted);
}

/* Explore Section */
.explore-section {
    margin: 50px 0;
}

.section-title {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 2rem;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.explore-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.explore-card {
    background: white;
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.explore-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--baby-blue), var(--pastel-pink), var(--lavender));
}

.explore-card:hover {
    transform: translateY(-5px);
    border-color: var(--lavender);
    box-shadow: var(--shadow-lifted);
}

.card-sticker {
    font-size: 3rem;
    margin-bottom: 15px;
}

.explore-card h3 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.explore-card p {
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
    color: var(--text-medium);
}

/* Footer */
.main-footer {
    text-align: center;
    padding: 30px;
    margin-top: 50px;
    color: var(--text-medium);
}

.footer-doodle {
    font-size: 1.5rem;
    margin-top: 10px;
    color: var(--pastel-pink);
}

/* ============================================
   PROFILE PAGE STYLES
   ============================================ */
.profile-page {
    background: linear-gradient(135deg, var(--cream) 0%, var(--baby-blue-light) 100%);
}

.profile-container {
    max-width: 800px;
    margin: 0 auto;
}

.profile-card {
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: var(--shadow-medium);
    position: relative;
    border: 4px solid var(--baby-blue);
}

.profile-card.aadhya-card {
    border-color: var(--pastel-pink);
}

.profile-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px dashed var(--lavender);
}

.club-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--pastel-pink), var(--lavender));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1rem;
    margin-bottom: 20px;
}

.profile-photo-frame {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    background: white;
    padding: 10px;
    box-shadow: var(--shadow-soft);
    transform: rotate(-2deg);
}

.profile-photo {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--baby-blue-light), var(--lavender-light));
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--lavender);
}

.profile-name {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.profile-name.alisha {
    color: var(--baby-blue);
}

.profile-name.aadhya {
    color: var(--pastel-pink-dark);
}

/* ID Card Style Fields */
.id-fields {
    display: grid;
    gap: 15px;
    margin-top: 30px;
}

.id-field {
    display: flex;
    align-items: center;
    background: var(--cream);
    border-radius: 15px;
    padding: 15px 20px;
    border: 2px solid var(--lavender-light);
}

.field-label {
    font-weight: 700;
    color: var(--text-dark);
    min-width: 140px;
    font-size: 0.95rem;
}

.field-value {
    flex: 1;
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
    color: var(--text-medium);
    border-bottom: 2px dotted var(--lavender);
    padding-bottom: 2px;
}

.field-value.filled {
    color: var(--text-dark);
}

.field-icon {
    font-size: 1.5rem;
    margin-right: 15px;
}

/* Hobbies & Favorites */
.favorites-section {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, var(--soft-yellow), var(--cream));
    border-radius: 20px;
    border: 3px dashed var(--star-gold);
}

.favorites-title {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hobby-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.hobby-tag {
    background: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 8px;
}

.favorite-star {
    margin-top: 20px;
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

.favorite-star .label {
    font-weight: 700;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.favorite-star .value {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.5rem;
    color: var(--heart-pink);
    margin-top: 5px;
}

/* ============================================
   PHOTO ALBUM PAGE
   ============================================ */
.album-page {
    background: linear-gradient(180deg, var(--cream) 0%, var(--pastel-pink) 50%, var(--lavender-light) 100%);
}

.album-container {
    max-width: 1200px;
    margin: 0 auto;
}

.album-title-card {
    background: white;
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.album-title {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 2.5rem;
    color: var(--text-dark);
}

.album-subtitle {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: var(--text-medium);
}

/* Scrapbook Grid */
.scrapbook-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
}

.scrapbook-item {
    position: relative;
}

.scrapbook-item.large {
    grid-column: span 2;
}

.scrapbook-photo {
    background: white;
    padding: 15px 15px 60px;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
    position: relative;
}

.scrapbook-photo:hover {
    transform: scale(1.03) rotate(0deg) !important;
    z-index: 10;
}

.scrapbook-item:nth-child(odd) .scrapbook-photo {
    transform: rotate(-2deg);
}

.scrapbook-item:nth-child(even) .scrapbook-photo {
    transform: rotate(2deg);
}

.scrapbook-item:nth-child(3n) .scrapbook-photo {
    transform: rotate(-3deg);
}

.photo-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--baby-blue-light), var(--pastel-pink));
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px dashed var(--lavender);
}

.photo-placeholder.square {
    aspect-ratio: 1/1;
}

.photo-placeholder .icon {
    font-size: 4rem;
    margin-bottom: 10px;
}

.photo-placeholder .text {
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
    color: var(--text-medium);
}

.photo-caption {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
    color: var(--text-dark);
    text-align: center;
}

/* Tape decorations */
.photo-tape {
    position: absolute;
    width: 60px;
    height: 25px;
    background: var(--soft-yellow);
    opacity: 0.9;
    z-index: 5;
}

.tape-top-left {
    top: -8px;
    left: 20px;
    transform: rotate(-15deg);
}

.tape-top-right {
    top: -8px;
    right: 20px;
    transform: rotate(15deg);
}

/* Sticker decorations */
.sticker {
    position: absolute;
    font-size: 2rem;
    z-index: 5;
}

/* ============================================
   TIMELINE PAGE
   ============================================ */
.timeline-page {
    background: linear-gradient(180deg, var(--lavender-light) 0%, var(--cream) 50%, var(--baby-blue-light) 100%);
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-title-card {
    background: white;
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: var(--shadow-soft);
}

.timeline-title {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 2.5rem;
    color: var(--text-dark);
}

.timeline-subtitle {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: var(--text-medium);
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--pastel-pink), var(--baby-blue), var(--lavender));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.2rem;
    color: var(--text-dark);
    box-shadow: var(--shadow-soft);
    border: 4px solid var(--pastel-pink);
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-marker:hover {
    transform: translateX(-50%) scale(1.1);
    border-color: var(--baby-blue);
}

.timeline-content {
    width: 45%;
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: all 0.3s ease;
}

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

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 20px;
}

.timeline-content:hover {
    box-shadow: var(--shadow-lifted);
    transform: translateY(-3px);
}

.year-label {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.5rem;
    color: var(--heart-pink);
    margin-bottom: 10px;
}

.milestone-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.milestone-description {
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 15px;
}

/* Hover photo reveal */
.timeline-photos {
    display: none;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px dashed var(--lavender);
}

.timeline-content:hover .timeline-photos {
    display: flex;
    flex-wrap: wrap;
}

.mini-photo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--baby-blue-light), var(--pastel-pink));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 2px dashed var(--lavender);
}

/* Timeline Photo Gallery - for actual photos */
.timeline-photos-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px dashed var(--lavender);
}

.timeline-photo-item {
    background: var(--cream);
    border-radius: 15px;
    padding: 12px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.timeline-photo-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-medium);
}

.timeline-photo-img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.timeline-photo-caption {
    font-family: 'Caveat', cursive;
    font-size: 1.15rem;
    color: var(--text-dark);
    text-align: center;
    margin-top: 12px;
    padding: 10px;
    background: white;
    border-radius: 10px;
    line-height: 1.4;
}

/* ============================================
   DREAMS PAGE
   ============================================ */
.dreams-page {
    background: linear-gradient(180deg, var(--baby-blue-light) 0%, var(--lavender-light) 30%, var(--pastel-pink) 70%, var(--cream) 100%);
    min-height: 100vh;
}

.dreams-container {
    max-width: 1000px;
    margin: 0 auto;
}

.dreams-title-card {
    background: white;
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: var(--shadow-soft);
}

.dreams-title {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 2.5rem;
    color: var(--text-dark);
}

.dreams-subtitle {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: var(--text-medium);
}

/* Dream Clouds */
.clouds-container {
    position: relative;
    padding: 40px 20px;
    min-height: 600px;
}

.dream-cloud {
    background: white;
    border-radius: 100px;
    padding: 30px 50px;
    position: relative;
    box-shadow: var(--shadow-soft);
    margin: 30px auto;
    max-width: 400px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dream-cloud:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lifted);
}

.dream-cloud::before,
.dream-cloud::after {
    content: '';
    position: absolute;
    background: white;
    border-radius: 50%;
}

.dream-cloud::before {
    width: 60px;
    height: 60px;
    bottom: -20px;
    left: 30px;
}

.dream-cloud::after {
    width: 40px;
    height: 40px;
    bottom: -35px;
    left: 60px;
}

.dream-cloud:nth-child(odd) {
    margin-left: 10%;
}

.dream-cloud:nth-child(even) {
    margin-right: 10%;
}

.dream-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.dream-text {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.dream-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: var(--heart-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1rem;
}

/* Add Dream Form */
.add-dream-section {
    background: white;
    border-radius: 25px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 3px dashed var(--lavender);
}

.add-dream-title {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.dream-input-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.dream-input {
    padding: 15px 25px;
    border: 3px solid var(--lavender);
    border-radius: 25px;
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
    width: 300px;
    outline: none;
    transition: border-color 0.3s ease;
}

.dream-input:focus {
    border-color: var(--baby-blue);
}

.add-dream-btn {
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--pastel-pink), var(--heart-pink));
    color: white;
    border: none;
    border-radius: 25px;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-dream-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .main-nav ul {
        gap: 5px;
    }
    
    .main-nav a {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .polaroid-photo {
        width: 150px;
        height: 150px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        left: 20px;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 50px !important;
        margin-right: 0 !important;
    }
    
    .scrapbook-item.large {
        grid-column: span 1;
    }
    
    .dream-cloud {
        max-width: 90%;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .ampersand {
        font-size: 1.5rem;
    }
    
    .title-card {
        padding: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

