body{
	font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color emoji;
}

/* Container */
.custom-header .container {
	z-index: 99;
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0px;
    margin: 0 auto;
	min-width: 1200px;
}

header.custom-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Menu */
.custom-header .main-menu ul li a {
    font-size: 18px;
    text-decoration: none;
    color: #fbeedf;
    font-weight: 600;
    transition: color 0.3s;
}

.custom-header .main-menu ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.custom-header .main-menu ul li a:hover {
    color: #ffcc00;
}

/* Logo */
.logo img {
    max-width: 80px; /* apne hisaab se size change karo */
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo a span {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    letter-spacing: 2px;
    color: #fbeedf;
	display: flex;
    flex-direction: column;
    align-items: center;
}

/* Add call, mob & address in side menu */
.mobile-contact {
    display: none;
    margin-top: 40px;
}

.mobile-contact a {
    display: block;
    padding: 12px;
    margin-bottom: 10px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
}

.call-btn {
    background: #8BC34A;
    color: #fbeedf;
}

.location-btn {
    background: #2196F3;
    color: #fbeedf;
    border: 1px solid #2196F3;
}

.mobile-number {
    text-align: center;
    font-weight: 600;
    margin-top: 10px;
    color: #fbeedf;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #111;
    transition: 0.3s;
}

/* Footer */
.site-footer {
    background: #fbeedf;
    color: #3d402c;
    padding: 60px 20px 20px;
}

.footer-col h4 {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 15px;
    color: #3d402c;
}

.footer-menu li a {
  font-weight: 400;
  color: #3d402c;
  text-decoration: none;
}

.footer-col li a {
    font-weight: 400;
    color: #3d402c;
    text-decoration: none;
}

.footer-col li a:hover {
  color: #3d402c;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 16px;
  color: #3d402c;
  border-top: 1px solid #3d402c;
  padding-top: 15px;
}

footer.site-footer {
    padding-top: 100px;
}

.footer-col ul {
    list-style: none;
    padding-left: 0;
}

.footer-col ul li::before {
		content: "›";
		margin-right: 10px;
		color: #3d402c;
		font-weight: bold;
}

/* Banner Text */
.hotel6-heading-decorative {
    font-family: Newsreader;
    font-style: italic;
}

@media (max-width: 768px) {

    /* Container fix */
    .custom-header .container {
        min-width: 100%;
        padding: 10px 20px;
    }
	
	/* Logo */
	.logo img {
    max-width: 50px;
	}
	
	.logo a span {
    font-size: 12px;
    letter-spacing: 1px;
	}
	
	/* Hamburger Menu */
	.hamburger span {
    width: 35px;
    height: 3px;
    background: #fbeedf;
    transition: 0.3s;
	}

    /* Hide desktop menu */
    .custom-header .main-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 260px;
        height: 100vh;
        background: #3D402C;
        padding: 80px 20px;
        transition: left 0.4s ease;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        z-index: 9999;
    }

    /* Active class */
    .custom-header .main-menu.active {
        left: 0;
    }

    /* Vertical menu */
    .custom-header .main-menu ul {
        flex-direction: column;
        gap: 20px;
    }

    .custom-header .main-menu ul li a {
        font-weight: 500;
        font-family: 'Playfair Display', serif;
        color: #fbeedf;
        font-size: 18px;
    }

    /* Show hamburger */
    .hamburger {
        display: flex;
        z-index: 10000;
    }
	
	.mobile-contact {
        display: block;
    }
	
	/*Footer */
	.footer-container {
		display: flex;
		flex-wrap: wrap;
	}
	
	footer.site-footer {
    padding-top: 40px;
	padding-bottom: 20px;
	}
	
	.footer-container {
	padding: 0px 20px;
	gap: 10px
	}
	
	.footer-col h4 {
    font-weight: 700;
	font-size: 16px;
	}
	
	.footer-col p {
	font-weight: 500;
	font-size: 14px;
	}
	
	.footer-col ul li a {
	font-weight: 500;
	font-size: 14px;
	}
	
	.footer-bottom {
    margin-top: 30px;
    font-size: 14px;
	}
	
	.footer-col ul {
    list-style: none;
    padding-left: 0;
	}

	.footer-col ul li::before {
		content: "›";
		margin-right: 10px;
		color: #3d402c;
		font-weight: bold;
	}
}