
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600&display=swap');


/* General Styles */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

nav,
aside{
	font-family: "Montserrat", sans-serif;
}

 main{
	   font-family: "Cormorant Infant", serif;	
}
header,
body,
footer{
	font-family: 'Cormorant Garamond', serif;
}

body {
    line-height: 1.6;
    background-color: #f8f6f0;
		    color: #3b3b3b;
}

.container {
    width: 100%;
	display:flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
	align-items: center;
	justify-content:space-between;
	height:80px;
}

/* Header and Navigation */
header {
    //background-color: rgba(255, 255, 255, 0.9);
	 background-color:transparent;
    position:sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1em 0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
	height:90px;
}

.logo img {
    width: 150px;
}

.btn-book{
text-transform:uppercase;
font-size:19px;
line-height:29px;
font-family: 'Cormorant Garamond', serif;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 0.5em;
    transition: color 0.3s ease;
}

nav ul li a:hover, .btn-book {
    color: #fff;
    background-color: #a67c52;
    padding: 0.5em 1em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
	font-family: 'Cormorant Garamond', serif;
}

/* Hamburger Icon */
        .hamburger {
            cursor: pointer;
            z-index: 1002;
        }

        .hamburger span {
            display: block;
            width: 30px;
            height: 3px;
            background-color: grey;
            margin: 5px 0;
            transition: all 0.3s;
        }

        /* Overlay Background */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s;
            z-index: 1000;
        }

        /* Side Menu */
        .menu {
            position: fixed;
            top: 0;
            left: -100%; /* Hidden initially */
            width: 250px;
            height: 100%;
            background-color:rgba(0, 0, 0, 0.4);
            transition: left 0.5s;
            padding: 60px 20px;
            z-index: 1001;
            overflow-y: scroll;
        }
.menu::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
        .menu ul {
            list-style: none;
        }

        .menu ul li {
            margin: 20px 0;
        }

        .menu ul li a {
            text-decoration: none;
            color: white;
            font-size: 18px;
            transition: color 0.3s;
        }

        .menu ul li a:hover {
            color: #ff6347;
        }

        /* Hamburger Animation */
        .open .hamburger span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .open .hamburger span:nth-child(2) {
            opacity: 0;
        }

        .open .hamburger span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Show Menu & Overlay */
        .menu-open {
            left: 0;
        }

        .overlay-visible {
            opacity: 1;
            visibility: visible;
        }

        /* Responsive Menu Behavior */
        @media (min-width: 768px) {
            .menu {
                width: 300px; /* Wider menu on large screens */
            }
        }

/* Hero Section */
.hero {
    background: url('alkabulan.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
	font-family: 'Cormorant Garamond', serif;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-text {
    z-index: 2;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
	font-family: 'Cormorant Garamond', serif;
	text-transform:uppercase;
	font-size:26px;
	line-height:32px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 1.5em;
	font-family: "Montserrat", sans-serif;
	line-height:22px;
}

.btn-primary {
    background-color: #a67c52;
    padding: 0.75em 2em;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
		font-family: 'Cormorant Garamond', serif;

}

.btn-primary:hover {
    background-color: #8d653e;
}

/* Services Section */
.wrap-contain{
display:flex;
justify-content:center;

}	

.hero-overlay{
background:rgba(0,0,0,0.1);
}

  .contain{
display:grid;
	width:90%;
	grid-template-areas:
	'nav nav nav'
	'main  main  aside';
	grid-template-columns:1fr 2fr 2fr;
	grid-template-rows:50px 1fr 40px;
}
	   
	.contain main{
grid-area:main;
}
.contain aside{
grid-area:aside;
}
.contain nav{
grid-area:nav;
}
.contain nav h1{
text-align:center;
font-family: 'Cormorant Garamond', serif;
font-size:24px;
line-height:32px;
text-transform:uppercase;
color:#6f4e37;
}

.contain main h1{
	text-align:center;
font-family: 'Cormorant Garamond', serif;
font-size:24px;
line-height:32px;
text-transform:uppercase;
color:#6f4e37;	
}

#image{
/*transition: transform 0.3s ease;*/
transition:3s ease-in-out;
}
.hero-text{
margin-top:50px;
}
.main-text{
width:90%;
font-family: "Montserrat", sans-serif;
	font-size:14px;
	line-height:22px;
	padding:5px;
	text-align:center;
	margin:auto;
}
  
.main-text b,h2{
font-size:18px;
color:#6f4e37;
font-family: "Cormorant Infant", serif;	
font-weight:100;
}  

.rumble{
max-width:15px;
width:100%;
object-fit:cover;
}

/* Footer */
footer {
    background-color:#6f4e37;
    color: white;
    text-align: center;
    padding: 2em 0;
	    font-family: 'Cormorant Garamond', serif;
}

footer a{
	text-decoration:none;
	color:inherit;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    margin-bottom: 0;
}
.footer-content a{
    text-decoration:none;
    color:inherit;
}
.social-media a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
}

.social-media a:hover {
    color: #a67c52;
}

@media(max-width:900px){
    
nav ul{
		display:grid;
		gap:10px;
		}
		
	.logo img{
width:120px;
}

.btn-book{
font-size:14px;
line-height:24px;
}
.hero h1{
text-transform:lowercase;
}
    .main-text{
		width:100%;
	}
.main-text p{
font-size:13px;
	line-height:21px;
	padding:5px;
}
.main-text b{
font-size:16px;
}
.contain{
display:grid;
	//height:150vh;
	width:90%;
	grid-template-areas:
	'nav nav nav'
	'aside  aside aside'
	'main main main';
	grid-template-columns:1fr 2fr 1fr;
	grid-template-rows:45px 0.3fr 0.3fr;
}
.contain nav h1{
font-size:24px;
line-height:30px;
text-transform:lowercase;
}

.contain main h1{
font-size:22px;
line-height:28px;
text-transform:lowercase;
}

.contain aside{
grid-area:aside;
padding-top:10px;
//height:400px;
padding-bottom:15px;
}

.contain aside .hero{
height:500px;
}


}
