/* ==========================================================================
   PALETTE
   ========================================================================== */
/*
Background - #FFFFFF
Rose Gold Accent - #B76E79
Light Rose Gold - #E8C7C8
Text - Dark Grey - #333333
Soft Background Sections - #FAF7F7
*/


/* ==========================================================================
   FONTS
   ========================================================================== */
@font-face {
    font-family: "Charm";
    src: url("../fonts/Charm/Charm-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Cookie";
    src: url("../fonts/Cookie/Cookie-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
}


/* ==========================================================================
   RESET
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ==========================================================================
   BASE STYLES
   ========================================================================== */
body {
    font-family: 'Poppins', sans-serif;
    background-color: white;
}


/* ==========================================================================
   HERO / SPLASH SECTION
   ========================================================================== */
.hero {
    position: relative;
    height: 90vh;
    background-image: url("../images/splashImage.jpg");
    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.35);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 20px;
}

.hero-content h1 {
    font-family: 'charm', cursive;
    font-size: 5rem;
    margin-bottom: 20px;
    font-weight: normal;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hero-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: #B76E79;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    transition: 0.3s ease;
}

.hero-button:hover {
    background-color: #9d5c66;
    transform: translateY(-3px);
}


/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
    width: 100%;
    background-color: #B76E79;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;

    padding-right: 20px;
    position: relative;
    z-index: 10;
}

.logo img {
    height: 10vh;
    width: 100px;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #FFFFFF;
    font-family: "Poppins", sans-serif;
    font-size: 25px;

    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;

    width: 0%;
    height: 2px;
    background-color: white;

    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #e0e0e0;
}

.nav-links a:hover::after {
    width: 100%;
}


/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about {
    padding: 80px 20px;
    background-color: #FAF7F7;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #333;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}


/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services {
    padding: 80px 20px;
    background-color: #F3E6E7;
}

.services-container {
    max-width: 1100px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.services-text {
    flex: 1;
}

.services-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #333;
}

.services-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.services-text li {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #555;
}

.services-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.services-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.services-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}


/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery {
    padding: 80px 20px;
    background-color: #FAF7F7;
    text-align: center;
}

.gallery-grid {
    column-count: 3;
    column-gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.02);
}

.tall {
    height: 350px;
    object-fit: cover;
}

.wide {
    height: 200px;
    object-fit: cover;
}


/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact {
    padding: 80px 20px;
    background-color: #FAF7F7;
    text-align: center;
}

.contact h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #333;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;

    display: flex;
    gap: 40px;
    text-align: left;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px 16px;
    border: 1px solid #eee;
    border-radius: 12px;
    background-color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    outline: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #B76E79;
    box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.15);
}

.contact-form button {
    padding: 14px;
    background-color: #B76E79;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-form button:hover {
    background-color: #9d5c66;
}

.contact-info p {
    margin-bottom: 10px;
    color: #555;
}


/* ==========================================================================
   CONTACT SOCIAL ICONS
   ========================================================================== */
.contact-socials {
    display: flex;
    gap: 25px;
    margin-top: 25px;
}

.social-icon i {
    font-size: 38px;
    color: #B76E79;
    transition: 0.3s ease;
}

.social-icon:hover i {
    color: #9d5c66;
    transform: translateY(-2px);
}


/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: #FFFFFF;
    border-top: 2px solid #B76E79;
    padding: 60px 20px 20px;
    color: #333;
    font-family: "Poppins", sans-serif;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer h3,
.footer h4 {
    margin-bottom: 15px;
    color: #333;
}

.footer p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.footer a {
    display: block;
    text-decoration: none;
    color: #555;
    margin-bottom: 8px;
    transition: 0.3s ease;
}

.footer a:hover {
    color: #B76E79;
}


/* ==========================================================================
   FOOTER SOCIAL ICONS
   ========================================================================== */
.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #555;
}

.social-link i {
    color: #B76E79;
    font-size: 18px;
}

.social-link:hover {
    color: #B76E79;
}

.social-link:hover i {
    color: #9d5c66;
}


/* ==========================================================================
   FOOTER BOTTOM
   ========================================================================== */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 13px;
    color: #888;
}


/* ==========================================================================
   MOBILE SCALING
   ========================================================================== */
@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        align-items: center;
        padding: 10px;
        gap: 10px;
    }

    .logo img {
        height: 70px;
        width: auto;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .nav-links a {
        font-size: 18px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .contact-container {
        flex-direction: column;
    }

    .about-container,
    .services-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image,
    .services-image {
        margin-top: 20px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .footer a {
        margin: 5px 0;
    }

    .social-link {
        justify-content: center;
    }

    .footer-bottom {
        font-size: 12px;
        padding: 15px 10px 0;
    }
}