/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    background-color: #f9f7f7;
}

h1, h2, h3, h4 {
    font-weight: 300;
    margin-bottom: 20px;
    color: #000;
}

p {
    margin-bottom: 15px;
}

a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #b56576;
}

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

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    height: 70px;
}

.logo {
    font-weight: 600;
    color: #000;
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

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

.nav-links li {
    margin-left: 30px;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.language-switcher {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.lang-btn {
    background: none;
    border: 2px solid #000;
    color: #000;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background-color: #000;
    color: #fff;
}

.lang-btn.active {
    background-color: #000;
    color: #fff;
}

/* Section Styles */
section {
    padding: 80px 0;
    scroll-margin-top: 70px;
}

.last-section {
    padding: 80px 0 20px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

/* Hero Section - Flip Card */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 0 80px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/fundo.jpeg');
    background-size: cover;
    background-position: center;
    filter: brightness(1.3);
    z-index: 0;
}

.flip-card {
    perspective: 1000px;
    width: 80%;
    max-width: 800px;
    height: 80vh;
    max-height: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 1.2s;
    transform-style: preserve-3d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.flip-active {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.flip-card-front {
    border: 30px solid #fff;
}

.flip-card-back {
    opacity: 0.75;
}

.flip-card-front {
    background-color: #fff;
}

.flip-card-back {
    background-color: #fff;
    transform: rotateY(180deg);
}

.flip-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
}

/* Info Section - Map */
.map-section {
    background-color: #fff;
}

.map-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.map-text {
    flex: 1;
    padding-right: 40px;
    min-width: 300px;
}

.map-image {
    flex: 1;
    min-width: 300px;
}

.map-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

/* Gallery Section */
.gallery-section {
    background-color: #f9f7f7;
}

.gallery-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.gallery-images {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.gallery-image {
    width: calc(50% - 8px);
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 5px;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.gallery-text {
    flex: 1;
    padding: 0 40px;
    min-width: 300px;
}

/* Example Section 1 */
.example1 {
    background-color: #fff;
}

.example1-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.example1-text {
    flex: 1;
    padding-right: 40px;
    min-width: 300px;
}

.example1-image {
    flex: 1;
    min-width: 300px;
}

.example1-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Example Section 2 */
.example2 {
    background-color: #f9f7f7;
}

.example2-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.example2-images {
    flex: 1;
    min-width: 300px;
}

.example2-image {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.example2-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s;
}

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

.example2-text {
    flex: 1;
    padding-left: 40px;
    min-width: 300px;
}

/* Footer */
footer {
    background-image: url('img/flores_padrao.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 40px 0;
    text-align: center;
    filter: brightness(1.3);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-btn {    
    border: 1px solid #000;
    background-color: #000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-btn:hover {
    background-color: #003f61;    
    border-color: #003f61;
}

.footer-links {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-top: 20px;
}

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

.footer-links a {
    color: #fff;
}

footer .logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

footer .logo img {
    height: 50px;
    width: auto;
    display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

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

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

    .mobile-menu {
        display: block;
    }

    .map-text, .gallery-text, .example1-text, .example2-text {
        padding-right: 0;
        padding-left: 0;
    }

    .map-content, .gallery-content, .example1-content, .example2-content {
        flex-direction: column;
    }

    .map-image {
        margin-top: 20px;
    }

    .gallery-content {
        gap: 20px;
    }

    .flip-card {
        width: 90%;
    }

    .language-switcher {
        margin-left: 10px;
    }
}

/* RSVP Form Styles */
.rsvp-form {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;    
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);    
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    font-size: 16px;
}

.form-group input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input[type="text"]:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 2px rgba(0, 94, 147, 0.1);
}

.name-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.name-input-group input {
    flex: 1;
}

.remove-name-btn {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 8px;
    font-size: 16px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-name-btn:hover {
    color: #c82333;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin-bottom: 0;
    color: #333;
    font-size: 16px;
}

.radio-group input[type="radio"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: #000;
}

.radio-group span {
    color: #333;
    font-size: 16px;
    margin-left: 4px;
}

.submit-btn {
    background: #000;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
    margin-top: 15px;
}

.add-person-btn {
    background: #528a52;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-person-btn i {
    font-size: 16px;
}

.add-person-btn:hover {
    background: #5da95d;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 94, 147, 0.2);
}

.submit-btn:hover {
    background: #047bc0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.form-message {
    margin-top: 20px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

.form-message.success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.form-message.error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* Toast Notification */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.toast {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.success {
    border-left: 4px solid #28a745;
}

.toast.error {
    border-left: 4px solid #dc3545;
}

.toast i {
    font-size: 20px;
}

.toast.success i {
    color: #28a745;
}

.toast.error i {
    color: #dc3545;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px 20px;
    display: none;
}

.success-message.show {
    display: block;
}

.success-message i {
    font-size: 48px;
    color: #28a745;
    margin-bottom: 20px;
}

.success-message h3 {
    color: #333;
    margin-bottom: 15px;
}

.success-message p {
    color: #666;
    font-size: 18px;
}

/* Accommodation Section */
.accommodation-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.accommodation-content h3 {
    color: #000;
    margin-bottom: 20px;
    font-size: 24px;
}

.accommodation-content > p {
    margin-bottom: 30px;
    color: #666;
}

.hotel-info {
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    gap: 40px;
    transition: all 0.3s ease;
}

.hotel-info:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hotel-info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hotel-info-content h4 {
    color: #000;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.hotel-info-content p {
    margin-bottom: 0;
    line-height: 1.6;
    color: #666;
}

.accommodation-note {
    margin-top: 15px;
    padding: 12px;
    background-color: rgba(0, 94, 147, 0.1);
    border-radius: 8px;
    font-style: italic;
    color: #000;
}

.hotel-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .accommodation-content {
        padding: 0 15px;
    }

    .hotel-info {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }

    .hotel-image {
        width: 100%;
        height: 200px;
    }

    .accommodation-note {
        margin-top: 12px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .accommodation-content h3 {
        font-size: 20px;
    }

    .hotel-info-content h4 {
        font-size: 1.1em;
    }

    .hotel-image {
        height: 180px;
    }
}

.bank-details-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .bank-details-container {
        flex-direction: column;
        width: 100%;
    }
    
    .bank-details {
        width: 100%;
        margin: 0;
    }
}

.bank-details {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 200px;
    flex: 1;
}

.bank-details p {
    margin-bottom: 10px;
    font-size: 16px;
}

.bank-details strong {
    color: #000;
    font-weight: 500;
} 
} 