/* style.css */

/* Font Face Definition */
@font-face {
    font-family: 'Oleo';
    src: url('src/Oleo/OleoScriptSwashCaps-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('src/Roboto/static/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

header {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 0;
    background-color: #fff;
    position: fixed;
    top: 0;
    z-index: 100;
}

.logo-container {
    width: 25%;
    max-width: 200px;
    display: flex;
    justify-content: center;
    min-width: 100px;
}

.logo {
    width: 100%;
    height: auto;
    display: block;
}

.music-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.music-controls button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: 1.5em;
    color: #333;
    animation: pulse-colors 2s infinite;
    transition: color 0.3s ease;
}

.music-controls button:hover {
    color: #007bff;
}

.music-controls.floating {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 101;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    animation: pulse-border 2s infinite;
}

@keyframes pulse-colors {
    0% {
        color: #333;
    }
    50% {
        color: red;
        text-shadow: 0 0 10px red;
    }
    75% {
        color: blue;
        text-shadow: 0 0 10px blue;
    }
    100% {
        color: #333;
    }
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.parallax-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    margin-top: 70px;
}

.parallax-section {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-attachment: fixed;
    background-blend-mode: multiply;
    background-color: rgba(0, 0, 0, 0.5);
}

.parallax-section:first-child {
    background-color: rgba(0, 0, 0, 0.4);
}

.parallax-content {
    padding: 20px;
    width: 80%;
    max-width: 800px;
    box-sizing: border-box;
    color: #333;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.info-container {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.parallax-section h1 {
    font-size: 3.5em;
    color: white;
    text-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700, 0 0 30px #FFD700;
}

.glowing-text{
    font-size: 2.5em;
    color: white;
    text-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700, 0 0 30px #FFD700;
}
.parallax-section p {
    font-size: 1.1em;
    line-height: 1.6;
    font-family: 'Roboto', sans-serif;
    transition: font-size 0.3s ease; /* Added transition for smooth resizing */
}

.parallax-section ul {
    list-style-type: disc;
    margin-left: 40px;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    transition: font-size 0.3s ease; /* Added transition for smooth resizing */
}

.controls-btns {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.controls-btns button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
}

.controls button:disabled {
    background-color: #cccccc;
    cursor: default;
}

.bold {
    font-weight: bold;
}

.copyright-overlay {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 2px 5px;
    font-size: 0.8em;
    border-radius: 3px;
    pointer-events: none;
    font-family: 'Roboto', sans-serif;
}

@media (max-width: 600px) {
    .parallax-content {
        width: 90%;
    }

    .logo-container {
        width: 50%;
    }
    .parallax-section p,
    .parallax-section ul {
        font-size: 1em; /* Reduced font size for mobile */
    }
    .info-container {
        padding: 15px; /* Reduced padding for smaller screens */
        margin-bottom: 15px;
    }
    .section-header {
        font-size: 2.5em; /* Reduced font size for mobile */
        padding: 20px 10px; /* Reduced padding for mobile, added horizontal padding */
    }
    .parallax-section:first-child .parallax-content h1 {
        font-size: 2.5em; /* Reduced font size for mobile */
    }
    .parallax-section:first-child .parallax-content h2 {
        font-size: 1.5em; /* Reduced font size for mobile */
    }
}

.uppercase {
    text-transform: uppercase;
    color: white;
}

.button-gold {
    background: linear-gradient(180deg, #FFD700, #DAA520);
    border: 2px solid #B8860B;
    border-radius: 8px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    font-family: 'Roboto', sans-serif;
}

.button-gold:hover {
    background: linear-gradient(180deg, #DAA520, #FFD700);
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.3);
}

.button-gold:active {
    background: linear-gradient(180deg, #B8860B, #DAA520);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    transform: translateY(2px);
}

.whatsapp-button,
.map-button {
    background-color: #25D366;
    color: white;
    border: 2px solid #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: background-color 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.map-button {
    background-color: #a50404;
}

.map-button:hover {
    background-color: #c7a200;
}

.whatsapp-button:hover{
    background-color: #128C7E;
}

.whatsapp-button i,
.map-button i {
    font-size: 1.2em;
}

/* Section Header Styles */
.section-header {
    background-color: #B8860B;
    display: block;
    width: 100%;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: center;
    font-family: 'Oleo', cursive;
    font-size: 3.5em;
    color: white;
    text-shadow: 0 0 10px #000;
    padding: 10px 0;
    box-sizing: border-box;
}

.parallax-section:not(:first-child) .section-header {
    position: absolute;
    top: -35px;
    left: 0;
    transform: none;
    margin-bottom: 0;
}

.parallax-section:not(:first-child){
    margin-top: 35px;
}

.parallax-section:first-child .parallax-content h1 {
    font-size: 3.5em; /* Default font size for larger screens */
    transition: font-size 0.3s ease; /* Smooth transition for resizing */
}

.parallax-section:first-child .parallax-content h2 {
    font-size: 2em; /* Default font size for larger screens */
    transition: font-size 0.3s ease; /* Smooth transition for resizing */
}

/* Invitation Section Styles */
.invitation-container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: left;
    width: 90%;
    max-width: 700px;
    margin: 0 auto;
}

.invitation-container p {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.invitation-container .bold {
    color: #B8860B;
    font-size: 1.2em;
}

.invitation-container .highlight {
    background-color: #FFD700;
    color: black;
    padding: 2px 5px;
    border-radius: 5px;
    font-weight: bold;
}

.invitation-container .confirm-info {
    margin-top: 20px;
    text-align: center;
}

.invitation-container .confirm-info p {
    font-size: 1.2em;
    color: #333;
}

/* Footer Styles */
footer {
    width: 100%;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: auto;
}

.footer-text {
    margin: 0;
    font-size: 0.9em;
}
/* Styles for the last parallax section */
.parallax-section:last-child .invitation-container {
    background-color: transparent;
    box-shadow: none;
    color: white;
    text-shadow: 0 0 10px #000;
}

.parallax-section:last-child .invitation-info{
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 10px;
}

/* New styles for confirm-info */

.confirm-info {
    background-color: rgba(253, 194, 1, 0.5); /* Same as invitation-info */
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
}

.parallax-section:last-child .invitation-container .bold {
    color: #FFD700;
}

.parallax-section:last-child .invitation-container strong {
    color: #FFD700;
}

.parallax-section:last-child .invitation-container .highlight {
    background-color: #B8860B;
    color: white;
}
