/* Wedding Static Site — kattigent.com recreation */

/* ===== Base ===== */
:root {
    --sage-green: #3a7a6a;
    --sage-pale: #ecf2f0;
    --sage-button-hover: #2d6456;
    --cream: #f6f4f2;
    --white: #ffffff;
    --heading-brown: #8a6a2e;
    --alt-brown: #c8b4a0;
    --quote-tan: #6e5a44;
    --text-body: #5a5a5a;
    --text-strong: #444444;
    --text-muted: #6b6b6b;
    --border-soft: #e5e5e5;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, Times, 'Times New Roman', serif;
    color: var(--text-body);
    background-color: var(--white);
    line-height: 1.85;
    font-size: 14px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--sage-green);
    color: var(--white);
    padding: 10px 15px;
    text-decoration: none;
    z-index: 1001;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

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

a {
    color: var(--sage-green);
    text-decoration: none;
    transition: all 0.25s ease-in-out;
}

a:hover {
    color: var(--text-strong);
}

a:focus-visible {
    outline: 2px solid var(--sage-green);
    outline-offset: 2px;
}

section {
    padding: 100px 20px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-brown);
    font-weight: normal;
    font-style: italic;
    line-height: 1.3;
    margin: 2rem 0 1rem;
}

h1 { font-size: 2.5rem; }
h2 {
    font-family: "Alex Brush", cursive;
    font-size: 56px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: normal;
    text-transform: none;
    text-align: center;
}
h3 { font-size: 1.3rem; }

/* ===== Navigation ===== */
#main-nav {
    background-color: var(--white);
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: auto;
    font-size: 12px;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    min-height: 50px;
}

.nav-logo-link {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    line-height: 0;
}

/* O.S.A. ribbon (Jackrose .ribbon-menu) */
#main-nav .ribbon-menu {
    position: absolute;
    top: -27px;
    right: 20px;
    z-index: 1;
    width: 60px;
    height: 80px;
    padding: 10px 0;
    color: var(--white);
    background-color: var(--sage-green);
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.25s ease-in-out;
}

#main-nav .ribbon-menu::before {
    content: "";
    display: inline-block;
    height: 100%;
    width: 0;
    vertical-align: middle;
}

#main-nav .ribbon-menu span {
    display: inline-block;
    vertical-align: middle;
    max-width: 90%;
}

#main-nav .ribbon-menu::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 0;
    border-left: 30px solid var(--sage-green);
    border-right: 30px solid var(--sage-green);
    border-bottom: 10px solid transparent;
}

#main-nav .ribbon-menu:hover,
#main-nav .ribbon-menu:focus-visible {
    height: 90px;
    color: var(--white);
    background-color: var(--sage-button-hover);
}

#main-nav .ribbon-menu:hover::after,
#main-nav .ribbon-menu:focus-visible::after {
    border-left-color: var(--sage-button-hover);
    border-right-color: var(--sage-button-hover);
}


.nav-logo {
    width: 50px;
    height: 50px;
}

#main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding-right: 0;
}

#main-nav a {
    color: var(--text-body);
    padding: 5px 0;
    transition: color 0.25s ease-in-out;
}

#main-nav a:hover,
#main-nav a:focus-visible {
    color: var(--text-strong);
}

#main-nav a:focus-visible {
    outline: 2px solid var(--sage-green);
    outline-offset: 2px;
}

/* ===== Hero ===== */
.hero {
    background-image: url('../images/hero/headerimage.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 40px 20px 140px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.25) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-family: 'Alex Brush', cursive;
    font-size: 7rem;
    color: var(--white);
    font-style: normal;
    margin: 0 0 15px;
    line-height: 1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.hero-logo {
    position: relative;
    z-index: 2;
}

.hero-logo .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-image img {
    max-width: min(400px, 80vw);
    height: auto;
    display: block;
}

.hero-effect {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.hero-date {
    font-size: 1.5rem;
    color: var(--white);
    font-style: italic;
    margin-bottom: 60px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.25);
}

.hero-action {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.hero-cta {
    display: inline-block;
    color: var(--white);
    font-size: 12px;
    font-style: italic;
    line-height: 20px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
    animation: hero-cta-bounce 2s ease-in-out 0s infinite;
    transition: opacity 0.25s ease-in-out;
}

.hero-cta:hover,
.hero-cta:focus-visible {
    color: var(--white);
    opacity: 0.75;
}

.hero-cta span { display: block; }

.hero-cta-chevron {
    font-size: 28px;
    line-height: 1;
    margin-top: 6px;
    font-style: normal;
}

@keyframes hero-cta-bounce {
    0%   { transform: translate(0, 0); }
    50%  { transform: translate(0, -30px); }
    100% { transform: translate(0, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-cta { animation: none; }
}

/* ===== Intro section — portraits + ampersand + "Ska gifta sig" ===== */
#intro {
    padding: 80px 20px 100px;
    background: #fff;
    text-align: center;
}
#intro .couple-intro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
#intro .couple-intro-person {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}
#intro .couple-intro-photo img {
    width: 240px;
    height: 260px;
    object-fit: contain;
}
#intro .couple-intro-separator img {
    width: 160px;
    height: 100px;
    object-fit: contain;
}
#intro .couple-intro-name {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-size: 16.8px;
    font-style: italic;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.68px;
    color: #888;
}
#intro .intro-heading h2 {
    color: var(--heading-brown);
    margin: 0 0 18px;
}
#intro .intro-subheading {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-size: 18.2px;
    font-style: italic;
    color: #888;
    margin: 0;
}
@media (max-width: 700px) {
    #intro .couple-intro { gap: 12px; }
    #intro .couple-intro-photo img { width: 180px; height: 195px; }
    #intro .couple-intro-separator img { width: 100px; height: 62px; }
}

/* ===== Count-up since wedding ===== */
.count-up {
    background-color: var(--sage-pale);
    padding: 60px 20px;
    text-align: center;
}

.count-up h2 {
    margin-bottom: 30px;
    color: var(--heading-brown);
}

.count-up-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.count-unit {
    min-width: 90px;
}

.count-value {
    font-size: 56px;
    color: #888;
    font-style: italic;
    line-height: 1;
    display: block;
}

.count-label {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 8px;
    font-style: italic;
}

/* ===== Brudgum & Brud ===== */
#brudgum-brud {
  padding: 80px 20px 100px;
  background: #fff;
  text-align: center;
}
#brudgum-brud .section-header { margin-bottom: 60px; }
#brudgum-brud .section-header h2 { color: var(--heading-brown); margin: 0; }

#brudgum-brud .couple-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

#brudgum-brud .couple-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f6f4f2;
  min-height: 400px;
}
#brudgum-brud .couple-card--photo-right {
  grid-template-areas: "text photo";
}
#brudgum-brud .couple-card--photo-right .couple-card-photo { grid-area: photo; }
#brudgum-brud .couple-card--photo-right .couple-card-text { grid-area: text; }

#brudgum-brud .couple-card-photo {
  background-size: cover;
  background-position: 50% 50%;
  min-height: 400px;
}

#brudgum-brud .couple-card-text {
  padding: 84px 42px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

#brudgum-brud .couple-card-name {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 16.8px;
  font-style: italic;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.68px;
  color: #444;
  margin: 0;
}

#brudgum-brud .couple-card-text p {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 14px;
  line-height: 1.85;
  color: #888;
  margin: 0;
}

@media (max-width: 700px) {
  #brudgum-brud { padding: 60px 0 80px; }
  #brudgum-brud .section-header { padding: 0 20px; }
  #brudgum-brud .couple-card,
  #brudgum-brud .couple-card--photo-right {
    grid-template-columns: 1fr;
    grid-template-areas: "photo" "text";
  }
  #brudgum-brud .couple-card-photo { min-height: 280px; }
  #brudgum-brud .couple-card-text { padding: 40px 24px; }
}

/* ===== Event Details ===== */
/* ===== När & Var ===== */
#nar-var {
  padding: 80px 20px 100px;
  background: #fff;
  text-align: center;
}
#nar-var .section-header { margin-bottom: 60px; }
#nar-var .events-heading {
  color: var(--heading-brown);
  margin: 0;
}

#nar-var .events-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

#nar-var .events-card-wrapper {
  position: relative;
  background: #fff;
  padding: 42px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
}

#nar-var .events-card-photo {
  margin: -42px -42px 56px;
}
#nar-var .events-card-photo img {
  display: block;
  width: 100%;
  height: auto;
}

#nar-var .events-card-icon {
  position: absolute;
  left: 50%;
  margin-left: -30px;
  margin-top: -56px;
  width: 60px;
  height: 60px;
}
#nar-var .events-card-icon img {
  width: 60px;
  height: 60px;
  display: block;
}

#nar-var .events-card-title {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 16.8px;
  font-style: italic;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.68px;
  color: #444;
  margin: 0 0 18px;
}

#nar-var .events-card-description p {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 14px;
  line-height: 1.85;
  color: #888;
  margin: 0;
  text-align: center;
}

#nar-var .events-card-summary {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 16.8px;
  font-style: italic;
  color: #444;
  margin-top: 25px;
  text-align: center;
}

@media (max-width: 900px) {
  #nar-var .events-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  #nar-var { padding: 60px 16px 80px; }
  #nar-var .events-card-wrapper { padding: 32px; }
  #nar-var .events-card-photo { margin: -32px -32px 46px; }
}

/* ===== RSVP (sage parallax) ===== */
.rsvp {
    background-image: url('../images/rsvp/rsvp.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: var(--sage-green);
    padding: 60px 20px;
    text-align: center;
    position: relative;
}

.rsvp::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(180, 210, 200, 0.10);
}

.rsvp-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 50px 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.rsvp h2 {
    margin-bottom: 10px;
    color: var(--heading-brown);
}

.rsvp-sub {
    font-size: 0.95rem;
    color: var(--text-body);
    font-style: italic;
    margin-bottom: 30px;
}

.rsvp-notice {
    font-size: 1rem;
    color: var(--text-strong);
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 25px;
    margin-bottom: 20px;
}

.rsvp-archive {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.85;
    font-style: italic;
}

/* ===== Gifts ===== */
.gifts {
    background-color: var(--white);
    padding: 100px 20px;
    text-align: center;
}

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

.gifts h2 {
    margin-bottom: 20px;
}

.gifts-intro {
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 40px;
    color: var(--text-body);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.gift-links {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.gift-link {
    display: block;
    transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out;
}

.gift-link:hover {
    transform: translateY(-5px);
    opacity: 0.85;
}

.gift-link img {
    max-width: 250px;
    height: auto;
}

/* ===== Credits ===== */
.credits {
    background-color: var(--white);
    padding: 100px 20px;
    text-align: center;
}

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

.credits h2 {
    margin-bottom: 20px;
}

.credits-intro {
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 50px;
    color: var(--text-body);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.credits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.credit-person img {
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.credit-person h3 {
    font-size: 1.3rem;
    margin: 0 0 5px;
}

.credit-person p {
    font-size: 0.9rem;
    color: var(--text-body);
    font-style: italic;
}

/* ===== Quotes Parallax Carousel ===== */
.quotes-parallax {
    background-image: url('../images/quotes/samos.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: var(--quote-tan);
    padding: 90px 20px 30px;
    position: relative;
}

.quotes-parallax::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(195, 187, 171, 0.10);
}

.quotes-carousel {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    min-height: 260px;
}

.quote {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.quote.is-active {
    opacity: 1;
    visibility: visible;
}

.quote p {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--white);
    margin-bottom: 20px;
    font-style: italic;
}

.quote cite {
    font-size: 0.95rem;
    color: var(--white);
    font-style: normal;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.quotes-dots {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.quotes-dots button {
    position: relative;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.quotes-dots button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    border-radius: 50%;
    transition: background 0.25s ease-in-out;
}

.quotes-dots button.is-active::before,
.quotes-dots button:hover::before {
    background: rgba(255, 255, 255, 0.9);
}

.quotes-dots button:focus-visible {
    outline: 2px solid #444;
    outline-offset: 3px;
}

/* ===== Gallery ===== */
.gallery {
    background-color: var(--white);
    padding: 100px 20px;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery h2 {
    margin-bottom: 40px;
}

.gallery-filter {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-btn {
    background-color: var(--sage-green);
    color: var(--white);
    border: 1px solid var(--sage-green);
    padding: 0.9em 1.8em;
    min-height: 44px;
    font-family: Georgia, Times, 'Times New Roman', serif;
    font-size: 12px;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.25s ease-in-out;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--sage-button-hover);
    border-color: var(--sage-button-hover);
    color: var(--white);
}

.filter-btn:focus-visible {
    outline: 2px solid var(--text-strong);
    outline-offset: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background-color: var(--white);
    transition: transform 0.25s ease-in-out;
}

.gallery-item:hover {
    transform: translateY(-4px);
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    padding: 12px;
    font-size: 12px;
    color: var(--text-body);
    text-align: center;
    font-style: italic;
    letter-spacing: 0.05em;
}

/* ===== Footer ===== */
.site-footer {
    background-image: url('../images/footer/footer-1.jpg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding: 15% 0 3em;
    text-align: center;
    color: #e5e5e5;
}

.site-footer .wrapper {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.site-footer .footer-logo {
    text-align: center;
}

.site-footer .footer-logo img {
    width: 400px;
    max-width: 100%;
    margin: 0 auto;
}

.footer-copyright {
    margin-top: 3em;
    text-align: center;
    color: #e5e5e5;
    font-size: 1.7rem;
    font-style: italic;
}

/* ===== Responsive ===== */

/* Tablets and smaller */
@media (max-width: 900px) {
    section {
        padding: 70px 20px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 42px; }

    .hero h1 { font-size: 4.5rem; }

    /* Disable parallax on tablet for performance */
    .hero,
    .rsvp,
    .quotes-parallax {
        background-attachment: scroll;
    }

    .credits-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-container { justify-content: center; }

    #main-nav ul { gap: 20px; }

    .count-up-grid { gap: 30px; }
    .count-value { font-size: 46px; }
}

/* Mobile */
@media (max-width: 600px) {
    section {
        padding: 50px 15px;
    }

    .hero {
        min-height: 500px;
        padding: 60px 15px;
    }

    .hero h1 { font-size: 3.5rem; }

    h2 { font-size: 34px; }

    .quote p { font-size: 1rem; }

    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item img { height: 240px; }

    #main-nav ul {
        font-size: 0.75rem;
        gap: 15px;
    }

    .rsvp-container { padding: 40px 24px; }

    .gift-links { gap: 30px; }
    .gift-link img { max-width: 200px; }

    .count-up-grid { gap: 20px; }
    .count-value { font-size: 37px; }
    .count-unit { min-width: 70px; }

    .ribbon-menu { display: none; }
    #main-nav ul { padding-right: 0; }
}

@media (max-width: 400px) {
    .nav-logo { width: 40px; height: 40px; }

    #main-nav ul { gap: 10px; }
    #main-nav a { font-size: 11px; }
}

/* ===== Sakura / snow petal effect (Jackrose jquery-sakura) ===== */
@keyframes fall { 0% { opacity: .9; top: 0 } 100% { opacity: .2; top: 100% } }
@keyframes blow-soft-left { 0% { margin-left: 0 } 100% { margin-left: -50% } }
@keyframes blow-medium-left { 0% { margin-left: 0 } 100% { margin-left: -100% } }
@keyframes blow-soft-right { 0% { margin-left: 0 } 100% { margin-left: 50% } }
@keyframes blow-medium-right { 0% { margin-left: 0 } 100% { margin-left: 100% } }
@keyframes sway-0 { 0% { transform: rotate(-5deg) } 40% { transform: rotate(28deg) } 100% { transform: rotate(3deg) } }
@keyframes sway-1 { 0% { transform: rotate(10deg) } 40% { transform: rotate(43deg) } 100% { transform: rotate(15deg) } }
@keyframes sway-2 { 0% { transform: rotate(15deg) } 40% { transform: rotate(56deg) } 100% { transform: rotate(22deg) } }
@keyframes sway-3 { 0% { transform: rotate(25deg) } 40% { transform: rotate(74deg) } 100% { transform: rotate(37deg) } }
@keyframes sway-4 { 0% { transform: rotate(40deg) } 40% { transform: rotate(68deg) } 100% { transform: rotate(25deg) } }
@keyframes sway-5 { 0% { transform: rotate(50deg) } 40% { transform: rotate(78deg) } 100% { transform: rotate(40deg) } }
@keyframes sway-6 { 0% { transform: rotate(65deg) } 40% { transform: rotate(92deg) } 100% { transform: rotate(58deg) } }
@keyframes sway-7 { 0% { transform: rotate(72deg) } 40% { transform: rotate(118deg) } 100% { transform: rotate(68deg) } }
@keyframes sway-8 { 0% { transform: rotate(94deg) } 40% { transform: rotate(136deg) } 100% { transform: rotate(82deg) } }

.sakura {
    pointer-events: none;
    position: absolute;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.7));
}

.hero-effect-item.snow {
    border-radius: 50% !important;
}

@media (prefers-reduced-motion: reduce) {
    .sakura { animation: none !important; display: none; }
}

