* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}


body {
    background: url('https://www.alessiaegiuseppe.com/images/back.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: "Playfair Display", serif;
    position: relative;
    background-color: #a79c8e16;
    background-blend-mode: overlay;
}

header {
    background: white;
    padding: 30px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1900px;
    margin: auto;
    padding: 0 20px;
    position: relative;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 50px;
}

.logo img {
    height: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #556B2F;
    font-size: 14px;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Cormorant+Garamond:wght@500;700&family=EB+Garamond&display=swap');

.image-container {
    text-align: center;       /* Centers the image horizontally */
    margin-top: -5rem;        /* Adjust this negative margin if you want the image closer or farther from the invitation text */
  }
  
  .decorative-image {
    width: 200px;             /* Adjust width as desired */
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease-in-out;
  }
  
  .decorative-image:hover {
    opacity: 1;
  }
  @media (max-width: 768px) {
    .image-container {
      margin-top: 1rem;  /* Moves image slightly down on smaller screens */
    }
  
    .decorative-image {
      width: 150px;      /* Smaller image on mobile */
    }
  }
  
  @media (max-width: 480px) {
    .image-container {
      margin-top: 4rem;  /* Adjust further for small phones */
    }
  
    .decorative-image {
      width: 120px;      /* Even smaller image for smallest devices */
    }
  }
  
  /* Remove extra padding/margin from wedding-invitation section if not needed */
  .wedding-invitation {
    padding-bottom: 0; /* Removes bottom padding completely */
    margin-bottom: 10;  /* Removes bottom margin completely */
  }
  
  
.wedding-invitation {
    text-align: center;
    padding: 12rem 3rem;
    font-family: 'Cormorant Garamond', serif;
    color: #4d4d4d;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Glavni naslov s plesajočo pisavo */
.names {
    font-family: 'Cormorant Garamond';
    font-size: 2rem;
    font-weight: 300;   
    color: #50652daf;
    margin: 5rem 0;
    animation: heartBeat 4.5s ease-in-out infinite;
    text-shadow: 0 2px 4px rgba(158, 122, 107, 0.2);
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Dekorativna črta z listi */
.leaf-divider {
    width: 120px;
    height: 15px;
    margin: 1.5rem auto;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="%239e7a6b" xmlns="http://www.w3.org/2000/svg"><path d="M12 2.5c-.3 0-.6.1-.8.3-.2.2-.3.5-.3.8v17c0 .3.1.6.3.8.2.2.5.3.8.3s.6-.1.8-.3c.2-.2.3-.5.3-.8v-17c0-.3-.1-.6-.3-.8-.2-.2-.5-.3-.8-.3z"/><path d="M7.5 8.5c-.3 0-.6.1-.8.3-.2.2-.3.5-.3.8v11c0 .3.1.6.3.8.2.2.5.3.8.3s.6-.1.8-.3c.2-.2.3-.5.3-.8v-11c0-.3-.1-.6-.3-.8-.2-.2-.5-.3-.8-.3z"/><path d="M16.5 8.5c-.3 0-.6.1-.8.3-.2.2-.3.5-.3.8v11c0 .3.1.6.3.8.2.2.5.3.8.3s.6-.1.8-.3c.2-.2.3-.5.3-.8v-11c0-.3-.1-.6-.3-.8-.2-.2-.5-.3-.8-.3z"/></svg>') no-repeat center;
    opacity: 0;
    animation: leafFall 1.5s ease-out forwards;
}

@keyframes leafFall {
    0% { transform: translateY(-20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0.6; }
}

/* Elementi s pojavno animacijo */
.reveal-item {
    opacity: 0;
    animation: gentleAppear 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes gentleAppear {
    0% { opacity: 0; transform: translateY(15px) rotate(-0.5deg); }
    100% { opacity: 1; transform: translateY(0) rotate(0); }
}

.announcement {
    font-family: 'EB Garamond', serif;
    font-size: 1.5rem;
    letter-spacing: 3px;
    color: #556b2f76;
    margin: 1rem 0;
    animation-delay: 0.4s;
}

.date {
    font-size: 1.3rem;
    color: #556b2fd6;
    letter-spacing: 2px;
    margin: 1.5rem 0;
    position: relative;
    animation-delay: 0.8s;
}

.date::before,
.date::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 1px;
    background: #556b2fd6;
    top: 50%;
    transform: translateY(-50%);
}

.date::before { left: -40px; }
.date::after { right: -40px; }

.location {
    font-family: 'Dancing Script';
    font-size: 1.8rem;
    color: #43542472;
    margin: 2rem 0 0.5rem;
    animation-delay: 1.2s;
}

.city {
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: #43542472;
    text-transform: uppercase;
    margin: 0.5rem 0;
    animation-delay: 1.6s;
}

.reception {
    font-family: 'Dancing Script', cursive;
    font-size: 1.6rem;
    color: #59545173;
    margin: 2rem 0 0.5rem;
    animation-delay: 2s;
}

.address {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: #5b59576f;
    text-transform: uppercase;
    margin: 0 0 2rem;
    animation-delay: 2.4s;
}



/* Hover efekti */
.names:hover {
    animation: nameGlow 1.2s ease-in-out infinite;
}

@keyframes nameGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(158, 122, 107, 0); }
    50% { text-shadow: 0 0 12px rgba(158, 122, 107, 0.3); }
}

@media (max-width: 768px) {
    .wedding-invitation { padding: 3rem 1rem; }
    .names { font-size: 2.5rem; }
    .date { font-size: 1.1rem; }
    .date::before, .date::after { width: 20px; }
    .date::before { left: -30px; }
    .date::after { right: -30px; }
}
@import url('https://fonts.googleapis.com/css2?family=Allura&family=Playfair+Display:wght@400;700&display=swap');








/* TIMELINE SECTION */
.wedding-timeline {
    position: relative;
    padding: 80px 20px;
    background: #e8e8e83a;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.wedding-timeline.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ANIMATED TIMELINE CONTAINER */
.timeline-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

.timeline-item::before {
    content: none; /* This removes the dot */
}

.wedding-timeline.visible .timeline-item::before {
    opacity: 1;
}

/* TIMELINE ITEM ANIMATIONS */
.timeline-item {
    position: relative;
    flex: 2;
    max-width: 130px;
    opacity: 0;
    transform: translateY(30px) rotate(-5deg);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.wedding-timeline.visible .timeline-item {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

/* STAGGERED ANIMATION DELAYS */
.timeline-item:nth-child(1) { transition-delay: 0.3s; }
.timeline-item:nth-child(2) { transition-delay: 0.5s; }
.timeline-item:nth-child(3) { transition-delay: 0.7s; }
.timeline-item:nth-child(4) { transition-delay: 0.9s; }
.timeline-item:nth-child(5) { transition-delay: 1.1s; }
.timeline-item:nth-child(6) { transition-delay: 1.3s; }

/* ICON ANIMATIONS */
.timeline-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    filter: drop-shadow(0 3px 6px rgba(95, 128, 92, 0.1));
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.timeline-item:hover img {
    transform: scale(1) rotate(-5deg);
    filter: drop-shadow(0 5px 12px rgba(92, 92, 92, 0.15));
}

/* TIME STYLING */
.time {
    display: block;                 /* or inline-block depending on your layout */
    font-family: 'Playfair Display';
    font-size: 20px;
    color: #ffffffc0;
    margin: 10px auto;              /* Horizontally center the block itself */
    padding: 10px 15px;
    background: #586b4c;
    border-radius: 20px;
    text-align: center;             /* Centers text horizontally */
    opacity: 0;
    transition: all 0.4s ease 0.2s;
}

.wedding-timeline.visible .time {
    opacity: 1;
    transform: translateX(0);
}

/* EVENT STYLING */
.event {
    font-family: 'Allura', cursive;
    font-size: 20px;
    color: #435424c0;
    letter-spacing: 1px;
    text-transform: none;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.event::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: #a79c8e;
    transition: width 0.4s ease;
}

.timeline-item:hover .event::after {
    width: 100%;
    left: 0;
}
  /* Style the countdown text */
  #countdown {
    font-size: 1.5rem;          /* Increase text size */
    font-weight: bold;         /* Make the text bold */
    font-family: "Arial", sans-serif; 
    color: #a79c8e;;               /* Darker text color */
     /* Light background */
    padding: 0.8rem 1.2rem;    /* Spacing around the text */
   
    display: inline-block;     /* Shrink to fit its content */
    transition: background-color 0.3s ease;
  }

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .timeline-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        padding: 40px 0;
    }

    .timeline-container::before {
        display: none;
    }

    .timeline-item {
        flex: 0 1 40%;
        max-width: 160px;
        opacity: 0;
        transform: translateY(20px);
    }

    .timeline-item img {
        width: 70px;
        height: 70px;
    }

    .time {
        font-size: 18px;
    }

    .event {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .wedding-timeline {
        padding: 60px 10px;
    }

    .timeline-item {
        flex: 0 1 100%;
        max-width: 200px;
    }
}










/* ===== ELEGANT DETAILS SECTION (ROMANTIC OLIVE) ===== */
.details-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(145deg, #506344, #485b3f, #405038); /* Refined Dark Olive Gradient */
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.details-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.details-section h2 {
    font-family: "Cormorant Garamond";
    color: #ffffff;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.2s;
}

.details-section.visible h2 {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FLEXIBLE GRID LAYOUT ===== */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.details-grid .detail-card h3,
.details-section .info-box h3,
.details-section .concierge-contact h3 {
    font-family: "Cormorant Garamond";
    font-size: 2.2rem;
    font-weight: 500;
    color: #ffffff;
}

/* ===== ANIMATED CARDS ===== */
.detail-card,
.info-box,
.concierge-contact {
    padding: 2.5rem;
    background: linear-gradient(145deg, #586b4c, #506344, #485b3f); /* More Pronounced Gradient */
    border-radius: 18px; /* Slightly more rounded */
    border: 1px solid rgba(255, 255, 255, 0.28); /* Slightly more visible border */
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18); /* More delicate shadow */
    margin: 1rem auto;
    opacity: 0;
    transform: translateY(40px) rotateX(6deg); /* Subtle rotation */
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    max-width: 900px;
    text-align: center;
}

.info-box {
    background: linear-gradient(145deg, #607354, #586b4c, #506344); /* Slightly different gradient */
}

.detail-card.visible,
.info-box.visible,
.concierge-contact.visible {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

.detail-card:hover,
.info-box:hover,
.concierge-contact:hover {
    transform: translateY(-10px) scale(1.04); /* More pronounced hover effect */
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2); /* More delicate hover shadow */
    background: linear-gradient(145deg, #647758, #5c6f50, #546748); /* Slightly brighter hover gradient */
}
.rsvp-section h3 {
    color: rgb(192, 190, 190); /* Sets the color of the h3 to purple */
}
/* ===== CARD CONTENT STYLES ===== */
.detail-card h3,
.info-box h3,
.concierge-contact h3 {
    font-family: 'Great-Vibes', cursive;
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4); /* Slightly more visible border */
    font-weight: 500;
}

.detail-card p,
.info-box p,
.concierge-contact p {
    font-size: 1.15rem;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.concierge-contact .shoe-advice p {
    font-style: italic;
    font-size: 0.85rem;
    color: #ffffff;
    margin-top: 1.8rem;
    text-align: center;
    line-height: 1.6;
}

/* ===== SPECIAL ELEMENTS ===== */
.accommodation-list {
    list-style: none;
    padding: 0;
    margin: 1.8rem 0;
}

.accommodation-list li {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px; /* Slightly more rounded */
    transition: transform 0.3s ease;
}

.accommodation-list li:hover {
    transform: translateX(10px);
}

.accommodation-list a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: block;
}

.accommodation-list p {
    color: #ffffff;
    text-decoration: none;
    font-weight: 200;
    font-size: 1rem;
    display: block;
    font-style: italic;
}

.concierge-contact {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.28);
}

.concierge-contact a {
    color: #e0e0e0;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
    text-decoration: none;
    display: inline-block;
}

/* ===== MAP CARD ANIMATIONS ===== */
.map-card {
    margin-top: 2rem;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.28);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.4s;
}

.map-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.map-card iframe {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 14px;
    transition: transform 0.3s ease;
}







/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .details-section {
        padding: 4rem 1rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .detail-card,
    .info-box,
    .concierge-contact {
        padding: 1.8rem;
        
    }

    .map-card iframe {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .details-section h2 {
        font-size: 2.2rem;
    }

    .detail-card,
    .info-box,
    
        .concierge-contact {
            padding: 1.5rem 1rem !important;
        }
        
        .concierge-contact a {
            font-size: 0.9rem;
            word-break: break-all;
        }
    }

    .detail-card h3,
    .info-box h3,
    .concierge-contact h3 {
        font-size: 1.6rem;
    }

    .map-card iframe {
        height: 180px;
    }


/* ===== ANIMATION STAGGERING ===== */
.detail-card:nth-child(1) { transition-delay: 0.2s; }
.detail-card:nth-child(2) { transition-delay: 0.4s; }
.detail-card:nth-child(3) { transition-delay: 0.6s; }
.info-box:nth-child(1) { transition-delay: 0.3s; }
.info-box:nth-child(2) { transition-delay: 0.5s; }
.concierge-contact { transition-delay: 0.7s; }

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

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









/* ====== GENERAL RSVP SECTION ====== */
.rsvp-section {
    padding: 4rem 2.5rem;
    text-align: center;
    font-family: "Playfair Display", serif;
    color: #5C5C5C;
    background: linear-gradient(145deg,  #485b3f9d 0%,  #485b3f 70%);
    
    max-width: 500px;
    margin: 8rem auto;
    border-radius: 30px;
    box-shadow: 0 12px 24px rgba(170, 170, 170, 0.06);
    position: relative;
    overflow: hidden;
}




/* ====== TYPOGRAPHY ====== */
.rsvp-section h2 {
    font-size: 1.7rem;
    font-family: 'Great-Vibes', cursive;
    color: #ffffff;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.rsvp-section h2::after {
    content: '';
    position: absolute;
    font-family: 'Cormorant Garamond', serif;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #ffffff 50%, transparent 100%);
}

/* ====== FORM ELEMENTS ====== */
form {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* reduced spacing between fields */
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.form-group {
    position: relative;
    width: 100%;
    
}

label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem; /* reduced spacing under label */
    color: #ffffff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

input, select, textarea {
    width: 100%;
    padding: 1rem 1.4rem;
    border: 1px solid #344732;
    border-radius: 8px;
    font-size: 1rem;
    font-family: "Playfair Display", serif;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(2px);
}

input:focus, select:focus, textarea:focus {
    border-color: #000000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(165, 146, 129, 0.15);
    transform: translateY(-1px);
}

textarea {
    height: 140px;
    line-height: 1.6;
    resize: vertical;
    min-height: 100px;
}

.radio-group{
  display:flex;
  justify-content:center;
  gap:1rem;
  padding:1rem 0;
}

.radio-pill{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.8rem 1.2rem;
  border:1px solid #394e3f;
  border-radius:999px;
  background:rgba(65,83,71,.9);
  cursor:pointer;
  transition:all .3s ease;
  user-select:none;
}


.note-required{
    color: white;
}

.radio-pill input[type="radio"]{
  accent-color:#cdb48d;
  transform:scale(1.3);
  margin:0;
}

/* --- patch riquadro “PARTECIPERAI?” --- */
fieldset.radio-group{
  border:0!important;        /* nessun bordo */
  margin:0!important;        /* via margini esterni */
  padding:0!important;       /* via padding interno */
  width:100%;                /* occupa tutta la larghezza del form */
}


.radio-pill-selected{
  background:linear-gradient(145deg,#768976 0%,#445e4291 100%);
  border-color:transparent;
  box-shadow:0 4px 12px rgba(165,146,129,.15);
}

/* messaggio di stato inviato/errore */
.form-message{margin-top:1.2rem;font-weight:700;}

/* honeypot invisibile */
.honeypot{position:absolute;left:-9999px;}

.radio-group div {
    flex: 1;
    position: relative;
}

.radio-group input[type="radio"] {
    opacity: 0;
    position: absolute;
}

.radio-group label {
    display: block;
    padding: 1rem;
    border: 1px solid #394e3f;
    border-radius: 8px;
    background: rgba(65, 83, 71, 0.9);
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-group input[type="radio"]:checked + label {
    border-color: #00000000;
    background: linear-gradient(145deg, #768976 0%, #445e4291 100%);
    box-shadow: 0 4px 12px rgba(165, 146, 129, 0);
}

/* ====== SUBMIT BUTTON ====== */
button {
    background: linear-gradient(145deg, #3e5044 0%, #c4c5c458 100%);
    color: #f7f7f7;
    padding: 1.2rem 2.4rem;
    border: none;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    margin-top: 1.5rem;
    box-shadow: 0 4px 6px rgba(165, 146, 129, 0.1);
    position: relative;
    overflow: hidden;
}

button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(97, 97, 97, 0.2);
}

button:hover::after {
    left: 100%;
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 768px) {
    .rsvp-section {
        padding: 3rem 1.5rem;
        margin: 4rem auto;
    }

    form {
        gap: 1.2rem;
    }

    .radio-group {
        flex-direction: column;
    }

    button {
        width: 100%;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .rsvp-section {
        padding: 2.5rem 1.2rem;
        border-radius: 12px;
    }

    input, select, textarea {
        padding: 0.8rem 1.2rem;
    }

    button {
        font-size: 1rem;
    }
}

/* Gift Section Styles */
.gift-section {
    padding: 8rem 2rem;
    font-family: "Playfair Display", serif;
    background: linear-gradient(to right, #fffcf876 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}
.gift-container h2 {
   
    font-family: 'Great-Vibes', cursive;
    font-size: 2rem;
    
}

.gift-container {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.gift-title {
    font-size: 2.4rem;
    color: #7a6859;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    animation: titleEntrance 1.2s ease-out;
}

.gift-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #c5b4a4 50%, transparent 100%);
}

@keyframes titleEntrance {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.gift-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5C5C5C;
    margin-bottom: 2.5rem;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.iban-container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 8px 24px rgba(165, 146, 129, 0.08);
    transition: transform 0.4s ease;
    animation: cardAppear 1s ease-out 0.6s both;
}

.iban-container:hover {
    transform: translateY(-5px);
}

.iban-details {
    font-size: 1rem;
    color: #6b5d4f;
    line-height: 1.6;
}

.iban-line {
    margin: 0.8rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.iban-line::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #c5b4a4;
}

.iban-highlight {
    color: #8B7A6E;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    padding: 0.2rem 0.5rem;
    background: rgba(165, 146, 129, 0.08);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.iban-highlight:hover {
    background: rgba(165, 146, 129, 0.12);
    cursor: pointer;
}



@keyframes cardAppear {
    0% { opacity: 0; transform: scale(0.96) translateY(20px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes floralPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@media (max-width: 768px) {
    .gift-section {
        padding: 4rem 1.5rem;
    }
    
    .gift-title {
        font-size: 2rem;
    }
    
    .iban-container {
        padding: 1.5rem;
    }
}




/* FOOTER STYLES */
/* ===== FOOTER STYLING ===== */
.wedding-footer {
    background: #efefefe1;
    padding: 0.3rem 0.2rem;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.wedding-footer.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Name Styling */
.credit-name {
    font-family: 'Great-Vibes', cursive;
    font-size: 1rem;
    color: #405b48;
    display: inline-block;
    margin: 0.5rem 0;
    transition: all 0.3s ease;
}

/* Link Styling - Same as text */
.credit-name a {
    color: inherit;  /* Inherit text color */
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.credit-name a:hover {
    opacity: 0.7; /* Subtle hover effect */
}

/* Subtitle Styling */
.credit-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #475e51;
    letter-spacing: 1px;
    display: block;
}

/* Footer Divider */
.footer-divider {
    width: 40px;
    height: 0.3px;
    background: #ffffff;
    margin: 0.1rem auto;
    opacity: 0.6;
}

/* Copyright */
.copyright {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #54545394;
    letter-spacing: 1px;
    margin-top: 1rem;
}

/* HOVER EFFECTS */
.credit-name:hover {
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(122, 104, 89, 0.1);
}




.language-switcher {
    display: flex;
    gap: 2rem;
    margin-left: auto;
  }
  
  .language-switcher li {
    list-style: none;
  }
  
  .language-switcher a {
    color: #556b2fca;
    font-weight: 500;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  
  .language-switcher a:hover {
    color: #3b4728;
    text-shadow: 0 0 4px rgba(85, 107, 47, 0.3);
  }
  










/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: white;
        text-align: center;
        padding: 10px 0;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links.show {
        display: flex;
    }
}
