﻿* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Libre Baskerville', serif;
    font-weight: 600;
}

h1, h2, h3, h4{
    font-family: 'Cinzel', serif;
}

h1, h2 {
    margin-bottom: 20px;
    font-size: 35px;
}

p {
    margin-bottom: 25px;
    line-height: 1.5;
}

#top-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#top-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: 2s;
    z-index: -1;
}

#welcome-text {
    position: absolute;
    top: 30%;
    transition: 2s;
}

   #welcome-line {
       font-size: 32px;
       text-align: left;
       color: #efefef;
       margin-left: 70px;
       font-family: 'Marcellus', serif;
   }

   #title-line {
       font-size: 90px;
       font-weight: bold;
       color: #ffffff;
       text-align: center;
   }

#scroll-arrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    cursor: pointer;
    animation: bounce 1.5s infinite;
}

#nav-bar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    transition: background-color 0.5s ease; 
    z-index: 1000;
}

    #nav-bar .left {
        font-size: 28px;
        font-weight: bold;
        font-family: 'Great vibes', cursive;
        font-style: italic;
        white-space: nowrap; 
    }

    #nav-bar .right {
        display: flex;
        gap: 40px; 
        margin-right: 80px;
    }

        #nav-bar .right a {
            color: #efefef;
            font-size: 20px;
            text-decoration: none;
            white-space: nowrap; 
        }

#welcome-line,
#title-line,
#nav-bar,
#scroll-arrow {
    opacity: 0;
    transition: opacity 2s ease;
}

#section-one {
    background: #004561;
    color: #efefef;
    padding: 70px 120px;
    text-align: center;
}

#section-two {
    background: #b1e6f3;
    color: #00212e;
    padding: 80px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

    #section-two .text {
        width: 45%; 
        margin-left: 50px;
    }

    #section-two .image {
        width: 40%;
        margin-right: 50px;
    }

    #section-two img {
        width: 100%;
        height: 300px;
        max-width: 600px;
        border-radius: 10px;
    }

.learn-more-btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #00212e;
    color: #efefef; 
    font-family: 'Marcellus', serif;
    font-size: 18px;
    border: none;
    border-radius: 10px; 
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

    .learn-more-btn:hover {
        background-color: #004561; 
        transform: translateY(-2px); 
    }


#contact-title-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    opacity: 0;
    transition: opacity 2s ease;
}

#contact-title-line {
    font-size: 100px;
    letter-spacing: 2px;
}

#contact-title-intro {
    font-size: 20px;
    font-family: 'Marcellus', serif;
    transition: opacity 2s ease;
}

#section-contact {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 80px 80px;
    background: #b1e6f3;
    color: #00212e;
    gap: 40px;
}

.contact-details {
    color: #00212e;
    padding: 0px 50px;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
    .contact-details h4 {
        font-size: 15px;
        margin-bottom: 10px;
        color: #004561;
    }

    .contact-details h5 {
        font-family: 'Marcellus', serif;
        font-size: 25px;
        margin-bottom: 15px;
    }
    
    .social-links a {
        color: #00212e;
        font-family: 'Marcellus', serif;
        font-size: 25px;
        text-decoration: none;
    }

        .social-links a:hover {
            color: #004561;
        }


.message-details {
    width: 50%;
    margin-right: 70px;
}  

    .contact-form {
        width: 100%;
        background: #003447;
        padding: 40px;
        border-radius: 12px;

    }
    .dream-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

        .dream-form label {
            position: absolute;
            left: -9999px;
            color: #efefef;
        }

        .dream-form input,
        .dream-form textarea {
            width: 100%;
            padding: 15px 5px;
            border: 1px solid #6faabf;
            border-radius: 15px;
            background: #00212e;
            color: #efefef;
            font-size: 16px;
            font-family: 'Marcellus', serif;

        }

        .dream-form input::placeholder,
        .dream-form textarea::placeholder {
            color: #bcdce6;
        }
        .dream-form textarea {
            min-height: 140px;
            resize: vertical;

        }
        .dream-form button {
            padding: 14px 20px;
            background: #004561;
            color: #efefef;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;

        }
        
            .dream-form button:hover {
                background: #8fd0e3;
            }

#gallery-wrapper {
    background-color: #b7d8e6;
    padding: 60px 10%;
}

#gallery-title-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    opacity: 0;
    transition: opacity 2s ease;
}

#gallery-title-line {
    font-size: 80px;
    transition: opacity 2s ease;
}

#gallery-title-intro {
    font-size: 20px;
    font-family: 'Marcellus', serif;
    transition: opacity 2s ease;
}

.gallery-section h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #00212e;
}

.subheading {
    font-family: 'Marcellus', serif;
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #003447;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

    .gallery-grid img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: 10px;
    }


.cerulean-footer {
    background-color: #00212e;
    color: #efefef;
    padding: 40px 60px;
}

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

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-nav {
    margin-top: 70px;
}

.footer-brand h2,
.footer-nav h3 {
    margin-top: 10px;
    margin-bottom: 25px;
}

.footer-nav a {
    display: block;
    color: #efefef;
    text-decoration: none;
    margin-bottom: 8px;
}

    .footer-nav a:hover {
        text-decoration: underline;
    }

.footer-credits {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.8;
}
