@import 'colors.css';

html{
    scroll-behavior: smooth;
	height: auto;
    overflow-x: hidden;
    height: 100vh;
    width: 100vw;
}

body{
    background-color: white;
	font-style: normal;
	margin: 0;
	padding: 0;
	overflow-x: none;
	height: auto;
    font-family: "Montserrat", sans-serif;
    font-weight: 200;
}

header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 25px 0;
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.top-header {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo img {
    height: 75px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    font-size: 15px;
    position: relative;
    padding-bottom: 5px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease-in-out;
}

nav ul li a:hover::after {
    width: 100%;
}

.landing {
    display: flex;
    height: 100vh;
    margin-top: 0;
}

.landing-left {
    flex: 1;
    height: 100%;
    overflow: hidden;
}

.landing-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-right {
    flex: 1;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.landing-content {
    max-width: 500px;
    
}

.landing-content h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: white;
    animation: fadeIn 1s ease;
}

.landing-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--background-color);
    animation: fadeIn 3s ease;
}








/*Photo section*/


.photo-section{
    margin: 0;
    padding: 15px;
    background-color: var(--background-color);
    overflow-x: hidden;
}


.photobanner {
	position: relative; 
	top:0px; 
	left:0px; 
	white-space: nowrap;
	animation: bannermove 85s linear infinite;
	
}

.photobanner:hover {
	animation-play-state: paused;
	
}

.photobanner img {    
	margin: 0 0.5em; 
	/* use --vh variable to avoid mobile vh jumpiness */
	height: calc(var(--vh, 1vh) * 37);
	width: auto;
	opacity: 1;
	transition: all 0.3s;

}

.photobanner img:hover {
	transform: scale(1.04);
	opacity: 0.9;
	box-shadow: 0 20px 30px rgb(0, 3, 41, .035),0 7px 18px rgb(0, 5, 77,.05);
}


@media screen and (max-width: 600px) {
	.photobanner img{
		height: 200px;
		width: auto;
	}
}


.quote-section{
    text-align: center;
    justify-content: center;
    text-align: center;
    padding: 90px;
    background-color: var(--primary-color);
    color: white;
}

.quote-section h2{
    font-weight: 400;
}


.quote-section h3{
    font-weight: 300;
    font-style: italic;
    
}

.copyright-section{
    top: 0;
    margin: 0;
    text-align: center;
    justify-content: center;
    padding: 10px;
    background-color: var(--background-color);

}

.copyright-section p{
    font-size: 12px;
    font-weight: 400;
    color: black;
    
}




.contact-section{
    padding: 100px;
    background-color: var(--primary-color);
    color: white;
    justify-content: center;
    text-align: center;
}


.contact-section h2{
    font-weight: 300;
    font-size: 45px;
}


.contact-section p{
    margin-top: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-section p:hover{
    color: rgb(219, 219, 219);
}






@keyframes bannermove {
	0% {
			transform: translate(0, 0);
	}
	100% {
			transform: translate(-50%, 0);
	}
}






@keyframes fadeIn {
  from {opacity: 0; transform: translateY(10px);}
  to {opacity: 1; transform: translateY(0);}
}

