body {
    background-color: #f5f5dc; /* Creamy background color */
}

/* Section video */
.section-one {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* Background video */
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video covers the screen fully */
    z-index: -1; /* Puts video behind content */
    filter: grayscale(30%); /* Subtle grayscale effect */
}

/* Content above the video */
.content {
    position: relative;
    z-index: 1; /* Brings content above video */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    color: white; /* Text in white */
    font-family: 'Cairo', sans-serif;
}

.content h1 {
    font-size: 3rem;
    margin: 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.content p {
    font-size: 1.5rem;
    margin-top: 10px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

/* Text block for black color */
.text-black {
    background-color: transparent;
    color: black; /* Black text color */
    font-family: 'Cairo', sans-serif;
    margin: 20px;
    padding: 20px;
    text-align: right;
    line-height: 1.8;
}

/* Button styling */
.play-button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    color: #f5f5dc; /* Creamy text color */
    background-color: #8d6e63; /* Soft brown button */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5);
    transition: background-color 0.3s ease;
}

.play-button:hover {
    background-color: #795548; /* Darker brown on hover */
}

/* Section 2 */
.section-two {
    display: flex;
    flex-direction: row-reverse; /* Reverse text alignment */
    justify-content: space-between;
    align-items: center;
    background-color: #d8bfb3; /* Dusty rose background */
    color: white; /* Text in white */
    font-family: 'Dubai', sans-serif;
    padding: 20px;
    height: 100vh;
    gap: 20px;
}

/* Text side */
.left-side {
    flex: 1;
    text-align: right;
    padding: 20px;
}

.left-side h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.left-side p {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Image side */
.right-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.right-side img {
    max-width: 100%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(62, 39, 35, 0.5);
}

/* Section 3 */
.section-three {
    background-color: #f5e1d2; /* Lighter cream */
    color: white;
    font-family: 'Dubai', sans-serif;
    padding: 40px;
    text-align: center;
}

.text-container h2 {
    margin-bottom: 30px;
    font-size: 1.8rem;
    line-height: 1.5;
}

/* Gallery images */
.gallery-container {
    margin: 0 auto;
    max-width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.gallery-item {
    width: 150px;
    height: 200px;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(62, 39, 35, 0.5);
}

.gallery-item:hover {
    transform: scale(1.05);
}

/* Section 4 */
.section-four {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #d8bfb3; /* Dusty rose background */
    color: white;
    font-family: 'Dubai', sans-serif;
    padding: 40px;
    gap: 20px;
}

.content-right {
    flex: 1;
    text-align: right;
}

.content-right h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.content-right p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.content-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-left img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(62, 39, 35, 0.5);
}

/* Section 5 */
.section-five {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    background-color: #f5e1d2;
    color: white;
    font-family: 'Dubai', sans-serif;
    padding: 40px;
    gap: 20px;
}

.add-calendar-btn {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1rem;
    font-family: 'Dubai', sans-serif;
    color: #f5f5dc;
    background-color: #8d6e63;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
}

.add-calendar-btn:hover {
    background-color: #795548;
}

.content-left iframe {
    width: 100%;
    max-width: 450px;
    height: 450px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(62, 39, 35, 0.5);
}

/* Section 6 */
.section-six {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #d8bfb3;
    color: white;
    font-family: 'Dubai', sans-serif;
    padding: 40px;
    gap: 20px;
}

.message-left, .message-right {
    flex: 1;
    max-width: 48%;
    padding: 20px;
    background-color: #f5e1d2;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(62, 39, 35, 0.5);
}

.message-left h2, .message-right h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #8d6e63;
    text-align: right;
}

.message-left p, .message-right p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: white;
    text-align: right;
}
.message-left, .message-right {
    flex: 1;
    max-width: 48%;
    padding: 20px;
    background-color: #f5e1d2;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(62, 39, 35, 0.5);
    height: 300px; /* Fixed height */
    overflow: hidden; /* To handle extra text */
}
