* {     /* all elements */
    margin: 0;      
    padding: 0;
    box-sizing: border-box;
    font-family: 'Georgia', serif;
}

/* NAVIGATION */
.navbar {
    width: 100%;
    background: #5A1F2A;             /* from my color theme */
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    position: sticky;                /* stays on top when scrolling */
    top: 0;
    z-index: 100;
}

.navleft a {
    color: white;
    margin-right: 22px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.navleft a:hover {
    color: #7C7C7C;
}

.navcenter p {
    font-size: 18px;
    font-weight: 600;
    margin-left: 10px;
    margin-right: 300px;
}

/* WELCOME SECTION */
.welcome {
    display: flex;
    background: #5A1F2A;
    color: white;
    padding: 100px 50px;
    min-height: 80vh;
    

}

.welcometext {
    flex: 1;
    display: flex;
    align-items: center;
   
}

.welcometext h1 {
    font-size: 85px;
    line-height: 1.1;
    
}

.welcomeimage {
    display: flex;
    width: 500px; 
    height: 700px; 
    background-color: #fff; 
    position: relative;
    overflow: hidden;
    border-radius: 50% / 35% 35% 0 0;
    /*clip-path: inset(0 0 0 0 round 50% / 35% 35% 0 0);*/
}

.welcomeimage img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

/* DESCRIPTION 1 */
.box1 {
    background-color: #C8B8A8;
    display: flex;
    align-items: center;
    padding: 100px 80px;
    gap: 150px;

}

.box1imgcontainer {
    flex: 0 0 40%;
    max-width: 400px;
    padding-left: 80px;
}

.box1img {
    width: 100%;
    height: auto;
    border: 15px solid transparent;
    box-sizing: border-box;
}

.box1text {
    flex: 1;
    color: white;
    
}

.box1text h1 {
    font-size: 4em;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 20px;
}

.box1text p {
    font-size: 1.5em;
    max-width: 550px;
    line-height: 1.6;
}

/* DESCRIPTION 2 */
.box2 {
    background-color: #5A1F2A;
    display: flex;
    align-items: center;
    padding: 100px 80px;
    gap: 150px;
}

.box2text {
    flex: 1;
    color: white;
    padding-left: 80px;
}

.box2text h1 {
    font-size: 4em;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 20px;
}

.box2text ul {
    font-size: 1.5em;
    max-width: 550px;
    line-height: 1.6;
}

.box2imgcontainer {
    flex: 0 0 40%;
    max-width: 400px;
}

.box2img {
    width: 100%;
    height: auto;
    border: 15px solid transparent;
    box-sizing: border-box;
}

/* LOCATION */
.location {
    background-color: #C8B8A8;
}

.map {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.map h1 {
    color: white;
    margin-bottom: 60px;
    font-size: 3em;
}

.map iframe {
    width: 50%;
    height: 50%;
}

.map p {
    color: white;
    font-size: 1.6em;
    margin-top: 40px;
}

.map a {
    color: white;
}

.map a:hover {
    color: #7C7C7C;
}

/* SCROLLING TEXT */
:root {
    --scroll-color: #9A5C63; 
    --text-color: white; 
    --font-size-lg: 5.5em;    
    --scroll-duration: 30s;  
}

.scrollingtextsection {
    background-color: var(--scroll-color);
    padding: 100px 80px;
    overflow: hidden; 
    white-space: nowrap; 
    padding-bottom: 25px;
}

.scrollingtext {
    animation: scroll-text var(--scroll-duration) linear infinite;
    display: inline-block; 
}

.textitem {
    font-size: var(--font-size-lg);
    font-weight: 800; 
    color: var(--text-color);
    text-transform: uppercase;
    padding-right: 40px; 
    letter-spacing: 2px;
}

@keyframes scroll-text {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); 
    }
}

/* FOOTER */
.footer {
    padding: 80px 20px 40px 20px;
    text-align: center;
    background-color: #9A5C63;
}

.footersection {
    margin-bottom: 60px;
    padding-bottom: 45px;
}

.footersection a {
    display: inline-flex; 
    align-items: center;
    background-color: white;
    color: #9A5C63;
    text-decoration: none;
    padding: 22px 112px;
    font-family: monospace;
    font-size: 1.7em;
    font-weight: 700;
    border-radius: 14px;
    transition:  0.3s;
    letter-spacing: 1px;
    padding-right: 70px;
}

.footersection a:hover {
    background-color: #d2cfcc;
}

.footercontainer {
    display: flex;
    justify-content: center; 
    gap: 275px;
    flex-wrap: wrap;
    list-style: none;
    padding-right: 75px;
}

.footerbox {
    max-width: 350px; 
    text-align: center; 
    color: white;
    line-height: 1.4;
}

.footerbox h3 {
    color: white;
    font-size: 16px;
    letter-spacing: 0.5px;
    padding-bottom: 17px;
}

.footerbox ul a {
    padding-top: 16px;
    font-size: 1em;
    letter-spacing: 0.3px;
    color: white;
}

.footerbox ul {
    list-style: none;
}

.footerbox a:hover {
    color: #7C7C7C;
}



