/* ===================================
   CATARINA & ZÉ PEDRO WEDDING
   Color Palette from Invitation Suite
   =================================== */

:root {
    /* Primary Colors - From invitation */
    --sage-dark: #6b775b;
    --sage: #8fa874;
    --sage-light: #a8b89a;
    --sage-pale: #c5d4b8;
    
    /* Neutrals */
    --cream: #f8f6f1;
    --cream-dark: #f0ede5;
    --ivory: #fffef9;
    --gold: #b8a676;
    --gold-dark: #9a8a5f;
    --gold-light: #d4c9a8;
    
    /* Accents */
    --terracotta: #c4a67c;
    --blush: #e8d5c4;
    --charcoal: #3a3a3a;
    --green-house: #2d4a3e;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Josefin Sans', 'Helvetica Neue', sans-serif;
    
    /* Spacing */
    --section-padding: clamp(4rem, 10vw, 8rem);
    --container-width: min(90%, 1200px);
}

/* ===================================
   RESET & BASE
   =================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   SCROLL ANIMATIONS
   =================================== */

.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
}

/* Fade Up */
.fade-up {
    transform: translateY(40px);
}
.fade-up.visible {
    transform: translateY(0);
}

/* Fade Down */
.fade-down {
    transform: translateY(-40px);
}
.fade-down.visible {
    transform: translateY(0);
}

/* Fade Left */
.fade-left {
    transform: translateX(60px);
}
.fade-left.visible {
    transform: translateX(0);
}

/* Fade Right */
.fade-right {
    transform: translateX(-60px);
}
.fade-right.visible {
    transform: translateX(0);
}

/* Scale Up */
.scale-up {
    transform: scale(0.8);
}
.scale-up.visible {
    transform: scale(1);
}

/* Delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===================================
   NAVIGATION
   =================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 2rem;
    background: linear-gradient(to bottom, rgba(248,246,241,0.98), rgba(248,246,241,0));
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(248,246,241,0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(107,119,91,0.08);
}

.nav ul {
    display: flex;
    justify-content: center;
    gap: 3rem;
    list-style: none;
}

.nav a {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage-dark);
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav a:hover {
    color: var(--gold-dark);
}

.nav a:hover::after {
    width: 100%;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--ivory);
    overflow: hidden;
}

.hero-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 700px;
    opacity: 0.4;
    z-index: 0;
    animation: fadeIn 2s ease-out;
}

.hero-frame-img {
    width: 100%;
    height: auto;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 0.4; }
}

.monogram {
    margin-bottom: 2rem;
}

.monogram-img {
    width: 140px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 4px 20px rgba(107,119,91,0.2));
    animation: float 6s ease-in-out infinite;
}

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

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    font-style: italic;
    color: var(--sage-dark);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .ampersand {
    font-size: 0.7em;
    color: var(--gold);
    margin: 0 0.3em;
}

.hero-invite {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 2.5rem;
}

.hero-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 0.5rem;
}

.hero-date p {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--charcoal);
    letter-spacing: 0.05em;
}

.date-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.hero-time {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--sage);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--sage), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ===================================
   SECTIONS - GENERAL
   =================================== */

.section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.container {
    width: var(--container-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    text-align: center;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    font-style: italic;
    color: var(--sage-dark);
    letter-spacing: 0.02em;
}

.section-header.light h2 {
    color: var(--ivory);
}

.ornament {
    font-size: 1.2rem;
    color: var(--gold);
}

.section-header.light .ornament {
    color: var(--gold-light);
}

/* Pattern Background */
.pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.pattern-bg .pattern-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
}

.pattern-bg.dark {
    background-color: var(--sage-dark);
}

.pattern-bg.dark .pattern-img {
    opacity: 0.15;
    mix-blend-mode: soft-light;
}

/* ===================================
   STORY SECTION
   =================================== */

.story {
    background: var(--cream);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.story-illustration {
    display: flex;
    justify-content: center;
}

.dog-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.15));
    transition: transform 0.4s ease;
}

.dog-image:hover {
    transform: scale(1.05) rotate(2deg);
}

.story-text {
    max-width: 500px;
}

.story-lead {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--sage-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.story-text p {
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.story-decoration {
    position: absolute;
    bottom: -50px;
    pointer-events: none;
}

.story-decoration.left {
    left: -100px;
}

.decoration-img.tennis {
    width: 200px;
    opacity: 0.15;
    transform: rotate(-15deg);
}

/* ===================================
   CEREMONY SECTION
   =================================== */

.ceremony {
    background: var(--sage-dark);
    color: var(--ivory);
}

.venue-card {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2rem;
}

/* Monastery Gallery */
.venue-gallery {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 0.75rem;
    width: 100%;
    max-width: 700px;
    max-height: 350px;
}

.venue-gallery-main {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    height: 350px;
}

.monastery-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.venue-gallery-main:hover .monastery-main-img {
    transform: scale(1.05);
}

.venue-gallery-side {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: 350px;
}

.venue-gallery-item {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    height: calc(50% - 0.375rem);
}

.monastery-side-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.venue-gallery-item:hover .monastery-side-img {
    transform: scale(1.1);
}

.venue-info {
    text-align: center;
    padding: 1rem;
}

.venue-info h3 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.venue-name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-style: italic;
    color: var(--ivory);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.venue-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 1.5rem;
}

.venue-time {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
}

.venue-description {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.3rem;
    line-height: 1.6;
}

.venue-description:last-of-type {
    margin-bottom: 2rem;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--sage-dark);
    background: var(--cream);
    border: 1px solid var(--sage);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--sage);
    color: var(--ivory);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(107,119,91,0.3);
}

.btn-light {
    background: transparent;
    color: var(--ivory);
    border-color: rgba(255,255,255,0.3);
}

.btn-light:hover {
    background: var(--ivory);
    color: var(--sage-dark);
    border-color: var(--ivory);
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 1.25rem 2rem;
    background: var(--sage-dark);
    color: var(--ivory);
    border: none;
}

.btn-submit:hover {
    background: var(--sage);
}

/* ===================================
   RECEPTION SECTION
   =================================== */

.reception {
    background: linear-gradient(to bottom, var(--cream), var(--cream-dark));
    position: relative;
}

.reception-visual {
    margin-bottom: 3rem;
    text-align: center;
}

.invitation-showcase {
    position: relative;
    display: inline-block;
    max-width: 400px;
    margin: 0 auto;
}

.invitation-frame {
    width: 100%;
    filter: drop-shadow(0 20px 60px rgba(107,119,91,0.2));
}

.invitation-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
}

.invitation-monogram {
    width: 100%;
    animation: float 6s ease-in-out infinite;
}

.reception-info {
    text-align: center;
}

.reception-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.reception-info h3 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-style: italic;
    color: var(--sage-dark);
    margin-bottom: 0.5rem;
}

.reception-location {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--charcoal);
    opacity: 0.8;
}

.reception-city {
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 2rem;
}

.reception-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--charcoal);
}

.detail-icon {
    font-size: 1.2rem;
}

.detail-icon-img {
    width: 40px;
    height: auto;
}

.reception-dog {
    position: absolute;
    bottom: 0;
    right: 5%;
    width: 150px;
    opacity: 0.2;
    pointer-events: none;
}

.green-dog-img {
    width: 100%;
}

/* ===================================
   DETAILS SECTION
   =================================== */

.details {
    color: var(--ivory);
    position: relative;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.detail-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.detail-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-5px);
}

.detail-card-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
    color: var(--gold-light);
}

.detail-card-icon svg {
    width: 100%;
    height: 100%;
}

.detail-card h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
}

.detail-card p {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--ivory);
    margin-bottom: 0.5rem;
}

.detail-note {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

/* ===================================
   SCHEDULE SECTION
   =================================== */

.schedule {
    background: var(--cream);
    position: relative;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--sage-pale), var(--sage), var(--sage-pale));
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 40px 1fr;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-time {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--sage-dark);
    text-align: right;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background: var(--sage);
    border: 3px solid var(--cream);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--sage);
    z-index: 1;
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
}

.timeline-content h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--sage);
}

.schedule-dog {
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 120px;
    opacity: 0.15;
    pointer-events: none;
}

.schedule-dog-img {
    width: 100%;
}

/* ===================================
   RSVP SECTION
   =================================== */

.rsvp {
    color: var(--ivory);
    position: relative;
}

.rsvp-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.rsvp-dog {
    margin-bottom: 2rem;
}

.rsvp-dog-image {
    max-width: 180px;
    margin: 0 auto;
    filter: drop-shadow(0 15px 40px rgba(0,0,0,0.25));
}

.rsvp-lead {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--ivory);
    margin-bottom: 0.5rem;
}

.rsvp-deadline {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
}

.rsvp-deadline span {
    color: var(--gold-light);
    font-weight: 400;
}

.rsvp-instruction {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 3rem;
}

.rsvp-form {
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--charcoal);
    background: var(--ivory);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184,166,118,0.2);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(58,58,58,0.4);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.radio-label:hover {
    background: rgba(255,255,255,0.1);
}

.radio-label input {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold-light);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.radio-label input:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
}

.radio-label span:last-child {
    font-size: 0.95rem;
    color: var(--ivory);
}

.qr-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.qr-section p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
}

.qr-code {
    width: 120px;
    margin: 0 auto;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--cream-dark);
    padding: 4rem 0 3rem;
    text-align: center;
    border-top: 1px solid rgba(107,119,91,0.1);
}

.footer-monogram {
    margin-bottom: 1.5rem;
}

.footer-monogram-img {
    width: 80px;
    margin: 0 auto;
    opacity: 0.6;
}

.footer-date {
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 0.3em;
    color: var(--sage);
    margin-bottom: 0.5rem;
}

.footer-names {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--sage-dark);
    margin-bottom: 1.5rem;
}

.footer-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-icon {
    width: 50px;
    opacity: 0.3;
}

.footer-icon.dog {
    width: 60px;
}

.footer-icon.flip {
    transform: scaleX(-1);
}

.footer-message {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gold);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
    .nav ul {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .nav a {
        font-size: 0.65rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .story-illustration {
        order: -1;
    }
    
    .dog-image {
        max-width: 220px;
    }
    
    .story-text {
        max-width: 100%;
    }
    
    .story-decoration {
        display: none;
    }
    
    .venue-card {
        padding: 1.5rem;
    }
    
    .venue-gallery {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        max-height: none;
    }
    
    .venue-gallery-main {
        height: 200px;
    }
    
    .venue-gallery-side {
        flex-direction: row;
        height: auto;
    }
    
    .venue-gallery-item {
        height: 120px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 50px;
    }
    
    .timeline-time {
        text-align: left;
    }
    
    .timeline-dot {
        position: absolute;
        left: 12px;
    }
    
    .reception-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .reception-dog,
    .schedule-dog {
        display: none;
    }
    
    .footer-icons {
        gap: 1rem;
    }
    
    .footer-icon {
        width: 35px;
    }
    
    .footer-icon.dog {
        width: 45px;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 1rem;
    }
    
    .nav ul {
        gap: 1rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-frame {
        width: 95%;
    }
    
    .section-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .section-header .ornament {
        display: none;
    }
    
    .monogram-img {
        width: 100px;
    }
    
    .dog-image {
        max-width: 180px;
    }
    
    .rsvp-dog-image {
        max-width: 140px;
    }
}

/* ===================================
   SELECTION STYLING
   =================================== */

::selection {
    background: var(--sage-pale);
    color: var(--charcoal);
}

/* ===================================
   SCROLLBAR STYLING
   =================================== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--sage-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--sage);
}
