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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: #4a4a4a;
    background-color: #fefefe;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

/* Ampersand styling - Times New Roman for classic elegance */
.times-ampersand {
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    font-weight: bold;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: none;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 25px rgba(139, 111, 71, 0.15);
    border-bottom: 1px solid rgba(139, 111, 71, 0.1);
}

.navbar.scrolled .nav-logo img {
    opacity: 0.8;
    filter: brightness(0) saturate(100%) invert(0);
}

.navbar.scrolled .nav-logo svg {
    fill: #8b6f47;
    opacity: 0.8;
}

.navbar.scrolled .nav-link {
    color: #5a5a5a;
    text-shadow: none;
}

.navbar.scrolled .nav-link:hover {
    color: #d4af8c;
}

.navbar.scrolled .nav-link::after {
    background-color: #d4af8c;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(0) saturate(100%) invert(1);
}

.nav-logo svg {
    height: 60px;
    width: auto;
    fill: white;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.nav-link:hover {
    color: #f2d7b8;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #f2d7b8;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transform-origin: center;
}

.navbar.scrolled .bar {
    background-color: #5a5a5a;
    box-shadow: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('Landing.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    margin-top: -20px;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title .ampersand {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2em;
    font-weight: 300;
    color: #f2d7b8;
    margin: 0 0.3em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-date {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    gap: 20px;
}

.date-line {
    width: 80px;
    height: 1px;
    background-color: white;
}

.date-text {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    white-space: nowrap;
}

.hero-location {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    display: block;
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
    text-decoration: none;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    border-color: #d4af8c;
    transform: rotate(45deg) scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #d4af8c;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.section-divider {
    width: 80px;
    height: 2px;
    background-color: #f2d7b8;
    margin: 0 auto;
}

/* Ceremony Section - Elegant Design */
.ceremony {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f6f3 0%, #f0ebe5 100%);
    position: relative;
}

.ceremony-elegant {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 400px;
}

.ceremony-left {
    text-align: left;
}

.ceremony-invitation {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #5a4a3a;
    line-height: 1.4;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.ceremony-message {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a4a3a;
    max-width: 380px;
    font-style: italic;
}

.ceremony-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
}

.rings-icon {
    color: #d4af8c;
    opacity: 1;
}

.rings-icon img {
    object-fit: contain;
    max-width: 150px;
    max-height: 150px;
}

.rsvp-button {
    display: inline-block;
    background: transparent;
    border: 2px solid #d4af8c;
    color: #d4af8c;
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
}

.rsvp-button:hover {
    background: #d4af8c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 140, 0.3);
}

.ceremony-right {
    text-align: right;
}

.ceremony-date {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #5a4a3a;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.ceremony-venue {
    font-size: 1.2rem;
    color: #5a4a3a;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* RSVP Section */
.rsvp {
    padding: 100px 0;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f1eb 100%);
}

.rsvp-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 1rem;
    font-style: italic;
}

.rsvp-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.google-form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
}

.google-form-container iframe {
    width: 100%;
    min-height: 1082px;
    border: none;
    border-radius: 10px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af8c;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 15px rgba(212, 175, 140, 0.2);
}

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

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

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: #d4af8c;
    background: rgba(212, 175, 140, 0.1);
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #d4af8c;
    border-radius: 50%;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #d4af8c 0%, #c29b77 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(212, 175, 140, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #c29b77 0%, #b08960 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(212, 175, 140, 0.4);
}

/* Informations pratiques Section */
.informations {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f6f3 0%, #f0ebe5 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #d4af8c;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #d4af8c 0%, #c29b77 100%);
    margin: 1rem auto;
    border-radius: 2px;
}

.informations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12), 0 3px 8px rgba(0, 0, 0, 0.08);
    border: 8px solid white;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18), 0 5px 15px rgba(0, 0, 0, 0.12);
}

.info-image {
    position: relative;
    height: 550px;
    overflow: hidden;
}

.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.info-card:hover .info-image img {
    transform: scale(1.05);
}

.info-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    padding: 2rem;
    color: white;
}

.info-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 400;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

/* Responsive pour les cartes informations */
@media (max-width: 768px) {
    .informations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .info-image {
        height: 400px;
    }

    .info-title {
        font-size: 1.8rem;
    }
}

.contact-info {
    background: linear-gradient(135deg, #f8f6f3 0%, #f5f1eb 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1rem 0;
    border: 1px solid rgba(212, 175, 140, 0.2);
}

.contact-link {
    color: #d4af8c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #c29b77;
    text-decoration: underline;
}

/* RSVP Page Styles */
.navbar-rsvp {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 25px rgba(139, 111, 71, 0.15);
    border-bottom: 1px solid rgba(139, 111, 71, 0.1);
}

.navbar-rsvp .nav-logo span {
    color: #d4af8c;
    text-shadow: none;
}

.navbar-rsvp .nav-logo img {
    opacity: 0.8;
    filter: brightness(0) saturate(100%) invert(0);
}

.navbar-rsvp .nav-logo svg {
    fill: #8b6f47;
    opacity: 0.8;
}

.navbar-rsvp .nav-link {
    color: #5a5a5a;
    text-shadow: none;
}

.navbar-rsvp .nav-link:hover {
    color: #d4af8c;
}

.navbar-rsvp .nav-link::after {
    background-color: #d4af8c;
}

.navbar-rsvp .bar {
    background-color: #5a5a5a;
    box-shadow: none;
}

.rsvp-hero {
    padding: 100px 0 40px 0;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f1eb 100%);
    text-align: center;
}

.rsvp-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.rsvp-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #d4af8c;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.rsvp-subtitle {
    font-size: 1.2rem;
    color: #5a4a3a;
    margin-bottom: 2rem;
    font-style: italic;
}

.rsvp-date-reminder {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 2rem 0;
}

.rsvp-form-section {
    padding: 20px 0 0 0;
    background: #fefefe;
}

.rsvp-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af8c;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 15px rgba(212, 175, 140, 0.2);
}

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

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

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
    font-size: 0.95rem;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: #d4af8c;
    background: rgba(212, 175, 140, 0.1);
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #d4af8c;
    border-radius: 50%;
}

.form-actions {
    text-align: center;
    margin-top: 3rem;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #d4af8c 0%, #c29b77 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(212, 175, 140, 0.3);
    position: relative;
}

.submit-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #c29b77 0%, #b08960 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(212, 175, 140, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: none;
}

.thank-you-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f1eb 100%);
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    font-size: 4rem;
    color: #d4af8c;
    margin-bottom: 2rem;
}

.thank-you-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #d4af8c;
    margin-bottom: 1rem;
}

.thank-you-content p {
    font-size: 1.1rem;
    color: #8a7b85;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.back-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #d4af8c;
    color: #d4af8c;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #d4af8c;
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    padding: 2rem 0;
    text-align: center;
    background: linear-gradient(135deg, #f0ebe5 0%, #e8ddd5 100%);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #5a4a3a;
}

.footer-content .ampersand {
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    font-weight: bold;
}

.footer-love {
    color: #8a7b85;
    font-style: italic;
}

/* Guide Porto Page */
.navbar-guide {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 25px rgba(139, 111, 71, 0.15);
}

.navbar-guide .nav-logo img {
    opacity: 0.8;
    filter: brightness(0) saturate(100%) invert(0);
}

.navbar-guide .nav-logo svg {
    fill: #8b6f47;
    opacity: 0.8;
}

.navbar-guide .nav-link {
    color: #5a4a3a;
}

.navbar-guide .nav-link:hover {
    color: #d4af8c;
}

.guide-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('Porto.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.guide-hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.guide-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.guide-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.guide-hero-description {
    font-size: 1.1rem;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.guide-content {
    padding: 100px 0;
    background: linear-gradient(135deg, #fefefe 0%, #f8f6f3 100%);
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.guide-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(139, 111, 71, 0.1);
    border: 1px solid rgba(212, 175, 140, 0.1);
    transition: all 0.3s ease;
}

.guide-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.15);
}

.guide-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.guide-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    color: #d4af8c;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.guide-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.guide-item {
    padding: 1.5rem;
    background: rgba(248, 246, 243, 0.5);
    border-radius: 15px;
    border-left: 4px solid #d4af8c;
    transition: all 0.3s ease;
}

.guide-item:hover {
    background: rgba(248, 246, 243, 0.8);
    transform: translateX(5px);
}

.guide-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #5a4a3a;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.guide-item p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.guide-item strong {
    color: #5a4a3a;
    font-weight: 600;
}

/* Responsive pour Guide Porto */
@media (max-width: 768px) {
    .guide-hero-title {
        font-size: 2.5rem;
    }

    .guide-hero-subtitle {
        font-size: 1.2rem;
    }

    .guide-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .guide-section {
        padding: 2rem;
    }

    .guide-section-title {
        font-size: 1.5rem;
    }
}

/* FAQ Page - Le mariage */
.navbar-faq {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 25px rgba(139, 111, 71, 0.15);
}

.navbar-faq .nav-logo img {
    opacity: 0.8;
    filter: brightness(0) saturate(100%) invert(0);
}

.navbar-faq .nav-logo svg {
    fill: #8b6f47;
    opacity: 0.8;
}

.navbar-faq .nav-link {
    color: #5a4a3a;
}

.navbar-faq .nav-link:hover {
    color: #d4af8c;
}

.faq-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('igreja3.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.faq-hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.faq-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.faq-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.faq-hero-description {
    font-size: 1.1rem;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.faq-content {
    padding: 50px 0;
    background: linear-gradient(135deg, #fefefe 0%, #f8f6f3 100%);
}

.faq-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-intro-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #d4af8c;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.faq-intro-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #d4af8c 0%, #c29b77 100%);
    margin: 1rem auto;
    border-radius: 2px;
}

.faq-intro-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.faq-sections {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 0.5rem;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category:first-child {
    margin-top: 1rem;
}

.faq-category-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #d4af8c;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(212, 175, 140, 0.2);
}

/* Modern FAQ styles */
.faq-item-modern {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9f7f4;
    border-radius: 8px;
    border-left: 4px solid #d4af8c;
}

.faq-question-modern {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #5a4a3a;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-answer-modern {
    color: #5a4a3a;
    line-height: 1.6;
}

.faq-answer-modern a {
    word-break: break-all;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.faq-answer-modern .map-container {
    margin-top: 1rem;
}

.faq-answer-modern .map-container iframe {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-answer-modern p {
    margin-bottom: 1rem;
}

.faq-answer-modern p:last-child {
    margin-bottom: 0;
}

.faq-answer-modern ul {
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.faq-answer-modern li {
    margin-bottom: 0.5rem;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(139, 111, 71, 0.08);
    border: 1px solid rgba(212, 175, 140, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(139, 111, 71, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 500;
    color: #5a4a3a;
    list-style: none;
    transition: all 0.3s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::marker {
    display: none;
}

.faq-question:hover {
    background: rgba(212, 175, 140, 0.05);
    color: #d4af8c;
}

.faq-arrow {
    font-size: 1rem;
    color: #d4af8c;
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.faq-item[open] .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem 2rem 2rem;
    color: #666;
    line-height: 1.7;
    animation: fadeIn 0.3s ease-out;
}

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

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    color: #666;
}

.faq-answer strong {
    color: #5a4a3a;
    font-weight: 600;
}

.faq-answer a {
    color: #d4af8c;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(212, 175, 140, 0.3);
    transition: all 0.3s ease;
}

.faq-answer a:hover {
    color: #c29b77;
    border-bottom-color: #c29b77;
}

/* Responsive pour RSVP */
@media (max-width: 768px) {
    .rsvp-title {
        font-size: 2.5rem;
    }
}

/* Responsive pour FAQ */
@media (max-width: 768px) {
    .faq-hero-title {
        font-size: 2.5rem;
    }

    .faq-hero-subtitle {
        font-size: 1.2rem;
    }

    .faq-intro-title {
        font-size: 2.2rem;
    }

    .faq-sections {
        padding: 0 1rem;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .faq-category-title {
        font-size: 1.5rem;
    }

    .faq-question-modern {
        font-size: 1.1rem;
    }

    .faq-item-modern {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .faq-answer-modern .map-container iframe {
        height: 250px;
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        min-height: calc(100vh - 70px);
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
        z-index: 999;
    }

    .nav-menu.active,
    .navbar .nav-menu.active,
    .navbar-rsvp .nav-menu.active,
    .navbar-faq .nav-menu.active,
    .navbar-guide .nav-menu.active {
        left: 0 !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: translateX(0) !important;
        background-color: rgba(255, 255, 255, 0.98) !important;
        position: fixed !important;
        top: 70px !important;
        width: 100% !important;
        z-index: 9999 !important;
        flex-direction: column !important;
        padding: 2rem 0 !important;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-item {
        margin: 1rem 0;
    }

    .navbar .nav-link {
        color: #5a5a5a !important;
        text-shadow: none !important;
    }

    .navbar .nav-link:hover {
        color: #d4af8c !important;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .ceremony-elegant {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .ceremony-left {
        text-align: center;
    }

    .ceremony-right {
        text-align: center;
    }

    .ceremony-invitation {
        font-size: 1.8rem;
    }

    .ceremony-message {
        max-width: 100%;
    }

    .ceremony-center {
        padding: 0;
    }

    .collapsible-header {
        padding: 1rem 1.5rem;
    }

    .collapsible-title {
        font-size: 1.2rem;
    }

    .collapsible-icon {
        font-size: 1.5rem;
        margin-right: 0.8rem;
    }

    .collapsible-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .info-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.2rem;
    }

    .item-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        align-self: flex-start;
    }

    .item-content h4 {
        font-size: 1.1rem;
    }

    .footer-names {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

    .footer-details {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .rsvp-form-container {
        margin: 0 20px;
        padding: 2rem;
    }

    .google-form-container {
        margin: 0 20px;
        padding: 1.5rem;
    }

    .google-form-container iframe {
        min-height: 900px;
    }

    .date-line {
        width: 40px;
    }

    .hero-date {
        gap: 15px;
    }

    .date-text {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .ceremony-title,
    .reception-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .rsvp-form-container {
        margin: 0 15px;
        padding: 1.5rem;
    }

    .google-form-container {
        margin: 0 15px;
        padding: 1rem;
    }

    .google-form-container iframe {
        min-height: 800px;
    }
}

/* Animation Effects */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Back to Top Button */
.back-to-top {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: linear-gradient(135deg, #8B5A3C, #A67358);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(139, 90, 60, 0.3);
    transition: all 0.3s ease;
    font-weight: bold;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #A67358, #8B5A3C);
    box-shadow: 0 6px 20px rgba(139, 90, 60, 0.4);
    transform: translateY(-2px);
}

.back-to-top:active {
    transform: translateY(0);
}

/* Mobile responsiveness for back to top button */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 11px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.lang-link {
    text-decoration: none;
    color: white;
    font-weight: 400;
    font-size: 0.855rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    padding: 0;
}

.lang-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #f2d7b8;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.lang-link:hover {
    color: #f2d7b8;
}

.lang-link:hover::after {
    width: 100%;
}

.lang-link.active {
    color: #f2d7b8;
    font-weight: 600;
}

.navbar.scrolled .lang-link {
    color: #5a5a5a;
    text-shadow: none;
}

.navbar.scrolled .lang-link::after {
    background-color: #d4af8c;
}

.navbar.scrolled .lang-link:hover {
    color: #d4af8c;
}

.navbar.scrolled .lang-link.active {
    color: #d4af8c;
}

.navbar-rsvp .lang-link,
.navbar-faq .lang-link,
.navbar-guide .lang-link {
    color: #5a4a3a;
    text-shadow: none;
}

.navbar-rsvp .lang-link::after,
.navbar-faq .lang-link::after,
.navbar-guide .lang-link::after {
    background-color: #d4af8c;
}

.navbar-rsvp .lang-link:hover,
.navbar-faq .lang-link:hover,
.navbar-guide .lang-link:hover {
    color: #d4af8c;
}

.navbar-rsvp .lang-link.active,
.navbar-faq .lang-link.active,
.navbar-guide .lang-link.active {
    color: #d4af8c;
}

@media screen and (max-width: 768px) {
    .language-selector {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
        padding: 1rem 0;
        border-top: 1px solid rgba(212, 175, 140, 0.2);
        margin-top: 1rem;
    }

    .nav-menu.active .language-selector {
        display: flex !important;
    }

    .lang-link {
        color: #5a5a5a !important;
        text-shadow: none !important;
    }

    .lang-link:hover {
        color: #d4af8c !important;
    }

    .lang-link.active {
        color: #d4af8c !important;
    }
}