@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:wght@400;600&family=Schibsted+Grotesk&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:wght@400;600&family=Inspiration&family=Meddon&family=Schibsted+Grotesk&family=Water+Brush&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");
:root {
    --green: #335E56;
    --darkBrown: #392419;
    --lightBrown: #6F5C4C;
    --offWhite: #E6DFD5;
    --borderradius: 10px;
}

* {
    padding: 0;
    margin: 0;
}

 body {
    font-family: 'Schibsted Grotesk', sans-serif;
    background-color: var(--offWhite);
    color: var(--darkBrown);
}

#logo {
    display: flex;
    flex-direction: row;
    justify-items: center;
    align-items: center;
    text-align: center;
    width: fit-content;
    padding-left: 18px;
}

#logo .logo-initial {
    font-family: 'Inspiration', cursive;
    font-size: 48px;
}

#logo .logo-text {
    font-size: 24px;
}

#logo .logo-subtext {
    font-size: 8px;
}

#logo div {
    display: flex;
    flex-direction: column;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.green {
    color: var(--green);
}

 /* TODO: Decide on a font for the co name */
 h1, h3 {
    font-family: 'Water Brush', cursive;
 }

 h3 {
    letter-spacing: 4px;
 }

 h1 {
    font-family: 'Meddon', cursive;
 }

 h2 {
    font-family: 'Cormorant Infant', serif;
 }

h1 {
    font-size: 64px;
}

h2, h3 {
    font-size: 60px;
}

p {
    font-size: 16px;
}

/* Utility Classes */
.cursive-txt {
    font-family: 'Inspiration', cursive;
    font-size: 60px;
}

.btn {
    border-radius: 15px;
    background-color: var(--green);
    color: white;
    padding: 6px 12px;
    margin: 6px 0;
}

a.btn {
    text-decoration: none;
}

/* Nav Bar */
nav ul {
    list-style: none;
    display: flex;
    float: right;
  }
  
  nav li {
    margin-right: 20px;
  }
  
  nav a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    font-weight: bold;
    color: #333;
    transition: color 0.3s ease;
  }
  
  nav a:hover {
    color: #007bff;
  }

/* Hero Section */
.hero {
    background: url(https://images.unsplash.com/photo-1520854221256-17451cc331bf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=3870&q=80);
    background-color: #f0f0f0;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center 32%;
    height: 600px;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

@media screen and (max-width: 1500px) {
    .hero {
        background-position: center 1%;
    }
}

.hero div {
    color: white;
    position: absolute;
    top: 125px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero h2 {
font-size: 60px;
}

.hero a {
    margin: 0 auto;
}

/* Services Section */
.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    padding-top: 18px;
}

.services img {
    width: 100%;
    margin: 0 auto;
    display: block;
    object-fit: cover;
    height: 410px;
}

.services div:first-of-type {
    padding-left: 7vw;
    align-self: center;
}

.services div:first-of-type p {
    margin-bottom: 18px;
}

/* Triple Grid */
.triple-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 24px;
}

.triple-grid > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #335e5624;
    border-radius: 27px;
    padding: 24px;
    margin: 48px;
}

.triple-grid h2 {
    font-size: 42px;
}

.triple-grid > div > div {
    font-size: 30px;
}

.triple-grid i {
    font-size: 72px;
    color: var(--green);
}

img {
    max-width: 100vw;
}

.aboutUs {
    background: url(/images/couple_temple.jpg);
    background-color: #f0f0f0;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center;
    height: 150vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    color: var(--offWhite);
}

.aboutUs > div {
    backdrop-filter: blur(10px);
    padding: 24px;
    margin: 5rem 20rem;
    border-radius: 24px;
    background-color: #392419a1;
}

#contact {
    margin-top: 18px;
    height: 300px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    background-color: var(--lightBrown);
    color: var(--offWhite);
}

#contact p {
    font-size: 18px;
}

#contact a {
    color: white;
}

@media screen and (max-width: 479px) {
    nav {
        display: none;
    }

    h1 {
        font-size: 24px;
    }

    .triple-grid {
        display: block;
        grid-template-columns: 1fr;
    }

    .hero {
        height: 270px;
    }

    /* TODO: ABOUT US SECTION SCROLL, BUT IMAGE STAY PUT */
    .aboutUs {
        height: 621px;
    }
    .aboutUs div {
        margin: 12px;
    }
}