* {
    box-sizing: border-box;
  
}
body {
    margin: 0;
    padding: 12px;
    width: 100%;
    /* background-color: rgba(128, 128, 128, 0.2); */
   
    
    
}
body.hide-scroll::-webkit-scrollbar {
    display: none;
}

a {
    text-decoration: none;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    max-width: 100%;
}
h2 {
    /* font-family: 'Herr Von Muellerhoff', cursive; */
    font-size: 100px;
    font-weight: normal;
    margin: 0 0 -55px;
}
h1, h3 {
    /* font-family: "Source Code Pro", sans-serif; */
    font-size: 47px;
    font-weight: bold;
    letter-spacing: 9.4px;
    margin: 0 0 15px;
}
p {
    color: #515151;
    line-height: 27px;
}
.a-CTA {
    border-bottom: 2px solid #a96700;
    padding-bottom: 4px;
    letter-spacing: 1.5px;
    font-size: 18px;
}
/*End Global*/

/*Start Mutual*/
p, .a-CTA, input, header .navigation-bar a, .copyright li, .contact .form form label, .contact .form form button {
    font-family: Cabin, sans-serif;
}
.fa-asterisk, .a-CTA, h2, header .navigation-bar a:hover, header nav.active .navigation-bar a:hover, footer .social-media .links a:hover, .copyright .info li a, .copyright .CTA li a:hover {
    color: #a96700;
}
header nav .navigation-bar .underline, header .text .button button:hover, .contact .form form button:hover, .contact .text i:hover {
    background-color: #a96700;
}
header .navigation-bar ul li, header .text, .about-us .text, .reservation .text, .menu .box-model, .menu .text, .fixed-image .text, footer, .copyright, .contact .text i {
    text-align: center;
}
header nav, header .navigation-bar ul, .about-us, .reservation, .about-us .image-container, .reservation .image-container, .menu, .menu .menu-image-container, footer .contact-container, .copyright ul, .contact {
    display: flex;
}
header nav .toggle, header nav .toggle span, header .navigation-bar, header .navigation-bar ul, .menu .box-model .close, footer .social-media .links a, .copyright .CTA li a {
    transition: .3s;
}
header, header nav .toggle span, header .navigation-bar a, header .text, header .text .arrow .left, header .text .arrow .right, .recipes, .menu .box-image-container, .fixed-image .text, .copyright, .copyright .arrow-up {
    position: relative;
}
header nav .toggle, header .navigation-bar .underline, header .text .arrow .left:after, header .text .arrow .right:after, header .svg-down, header .arrow-down, .recipes .text, .menu .box-model .close, .menu .box-model .arrow .arrow-right,.menu .box-model .arrow .arrow-left, .menu .box-image-container .box-image, .copyright .svg-up {
    position: absolute;
}
.recipes .text, .fixed-image .text, .menu .box-image-container, .menu .box-image-container .box-image {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
header nav, header .navigation-bar a:hover .underline, header .navigation-bar li.active .underline, .menu .box-model, .menu .box-image-container, .menu .box-image-container .box-image {
    width: 100%;
}
button, .dots > div, header nav .toggle, header .arrow-down, .menu .box-model .close, .menu .box-model .arrow .arrow-right,.menu .box-model .arrow .arrow-left, .menu .menu-image-container .image img, footer .newsletter i, .copyright .arrow-up {
    cursor: pointer;
}
.dots .active, header nav.active, header nav.active .toggle.active span, header nav .toggle span, header .navigation-bar .underline, header .text .arrow .left, header .text .arrow .right, header .text .button button, .contact form button {
    background-color: #fff;
}
h1, h3, header .navigation-bar a, header .text span, .menu .box-model .close:hover, footer .text h2, footer .text p, footer .social-media .links a, .contact .text i, .contact .form form button {
    color: #fff;
}
header nav, header .navigation-bar.show, header .navigation-bar a:hover .underline, header .navigation-bar li.active .underline, header .text .arrow .left:after, .menu .box-model, .copyright .arrow-up {
    left: 0;
}
header .text .arrow .left:after, header .text .arrow .right:after, header .text span, footer .social-media .links a, footer .newsletter i, .copyright .arrow-up, .contact .text i, .contact .form form label {
    display: inline-block;
}
/*End Mutual*/

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6); /* Black overlay */
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    position: relative;
    border-radius: 8px;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    color: #888;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
}

/* Prevent scrolling when modal is open */
.modal-open {
    overflow: hidden;
}


/* Form styling (adjust to your design) */
form {
    display: grid;
    gap: 10px;
}

label {
    font-weight: bold;
}

input,
button {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

button {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}





/*Start Home Page*/

/*Start Header*/
/* General Styles */
body {
    /* font-family: Arial, sans-serif; */
    margin: 0;
    padding: 0;
    background-color: #333;
    
}



header nav {
    position: fixed;
    top: 0;
    padding: 36px 36px 20px;
    z-index: 20;
    background-color: rgba(255, 255, 250, 0.9); /* Semi-transparent background */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header nav .toggle {
    display: none;
    top: 26px;
    left: 20px;
    background-color: transparent;
    border: none;
    padding: 0;
    z-index: 21;
}

header nav .toggle:focus {
    outline: none;
}

header nav.active .toggle span {
    background-color: #000;
}

header nav .toggle.active {
    left: 32%;
}

header nav .toggle.active .first {
    top: 16px;
    transform: rotate(-45deg);
}

header nav .toggle.active .last {
    top: 0;
    transform: rotate(45deg);
}

header nav .toggle .hide {
    transition: 0s;
    visibility: hidden;
}

header nav .toggle span {
    display: block;
    width: 30px;
    height: 2px;
    border-radius: 40px;
}

header nav .toggle span:not(:last-of-type) {
    margin-bottom: 6px;
}

header nav .logo {
    flex-basis: 56%;
    padding-left: 50px;
}

header .navigation-bar.show {
    width: 40%;
}

header .navigation-bar.show a {
    color: #ccc !important;
}

header .navigation-bar.show a:hover {
    color: #fff !important;
}

header .navigation-bar ul li {
    flex: 1;
    padding: 0 10px;
}

header .navigation-bar a {
    text-decoration: none;
    transition: all .5s;
    font-size: 16px;
}

header nav.active .navigation-bar a {
    color: #000;
}

header .navigation-bar .underline {
    height: 2px;
    width: 0;
    left: 50%;
    bottom: -4px;
    transition: all .3s;
    display: block;
}

header .text {
    top: 40%;
    color: white;
}

header .text h1 {
    margin-bottom: 0;
}

header .text .arrow .left, header .text .arrow .right {
    height: 3px;
    width: 100px;
}

header .text .arrow .left {
    left: -4%;
}

header .text .arrow .right {
    right: -4%;
}

header .text .arrow .left:after, header .text .arrow .right:after {
    content: '';
    border: 10px solid transparent;
    border-left-color: #fff;
    top: -8px;
}

header .text .arrow .right:after {
    right: 0;
    border-color: transparent #fff transparent transparent;
}

header .text .arrow .fa-asterisk {
    vertical-align: super;
}

header .text span {
    font-family: "Source Code Pro", sans-serif;
    font-size: 15px;
    margin-bottom: 12px;
}

header .text .button button, .contact form button {
    border: none;
    padding: 9px 18px;
    letter-spacing: 2.4px;
    font-size: 12px;
    font-family: source_sans_problack, sans-serif;
    border-radius: 3px;
}

header .text .button button, .contact form button:focus {
    outline: none;
}

header .svg-down {
    bottom: 0;
    left: 50%;
    z-index: 5;
    margin-left: -96px;
    margin-bottom: -12px;
    color: #fff;
}

header .arrow-down {
    width: 70px;
    height: 50px;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 10;
    background: url("https://res.cloudinary.com/abdel-rahman-ali/image/upload/v1535988515/arrow-down.png") no-repeat center;
}

/* Navigation Styles */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 1000;
}

nav .logo img {
    height: 50px;
}

nav .toggle {
    display: none;
}

.navigation-bar {
    display: flex;
   
}

.navigation-bar ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
   
}

.navigation-bar ul li {
    position: relative;
    
}

.navigation-bar ul li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: rgb(195, 147, 66);
    font-weight: bold;
}

.navigation-bar ul li a:hover,
.navigation-bar ul li:hover > a {
    /* background-color:rgba(255, 255, 255, 0.8); */
    text-decoration: underline;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8); 
    min-width: 200px;
    /* box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2); */
    z-index: 1;
}

.dropdown-content a {
    color: rgb(195, 147, 66);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    /* background-color: rgba(68, 68, 68, 0.2);  */
    text-decoration: underline;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav .toggle {
        display: block;
        cursor: pointer;
    }

    nav .toggle .first,
    nav .toggle .middle,
    nav .toggle .last {
        background: rgb(195, 147, 66);
        height: 4px;
        margin: 5px;
        width: 25px;
    }

    .navigation-bar ul {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .navigation-bar ul.active {
        display: flex;
    }

    .navigation-bar ul li a {
        padding: 15px;
        text-align: center;
    }
}















/* banner */
.ban{
    margin-top: 7%;
}




.honeymoon-text{
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    /* font-weight: bold; */
    background: linear-gradient(90deg, #cc246d, #4e2a87);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    z-index: 10;
    margin-top: 15%;
    /* margin-right:1%; */
   

}
.gradient-honeymoon-text {
    background: linear-gradient(90deg, #cc246d, #4e2a87);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
.honeyp{
    padding-top: 12%;
    margin: auto;
   
    width: 68%;
}
.honeyp p{
    font-size: 20px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    /* font-style: italic; */
   font-variant: inherit;
    
}















.wine-color-box {
    background-color: #722F37; 
    color: white;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    margin-top: 10px;
    width: 93%;
    white-space: nowrap; 
    margin-left: 3%;
    margin-right: 3%;
    /* align-items: center; */
    margin-bottom: 3%;
    font-size: 20px;
   
}
.wine-color-box span {
    margin-right: 80px; 
    font-size: 30px;
    font-style: italic;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.wine-color-box select,
.wine-color-box input {
    background-color: #722F37;
    color: white;
    border: none;
    outline: none;
    padding: 10px 15px; 
    /* margin-right: 15px;  */
    border-radius: 5px;
   
}
.wine-color-box input::placeholder {
    color: white;
}
.wine-color-box .search-icon {
    margin-left: 15px;
  
}






/* brand */
.brandimage{
    margin-left: 2.3%;
}
.container {
	max-width: 100rem;
	margin: 0 auto;
	padding: 0 2rem 2rem;
}

.heading {
	background: linear-gradient(90deg, #cc246d, #4e2a87);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
	padding: 4rem ;
	text-align: center;
    font-size: 60px;
    margin-top: 5%;
}
.gradient-heading {
    background: linear-gradient(90deg, #cc246d, #4e2a87);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
.brand {
    height: 230vh;
    width: 100%;
    background-color: white;
    margin-top: -1%;

}

.brand h1 {
    margin-top: -4%;
    text-align: center;

}

.brandimagerap {
    display: grid;
    grid-template-columns: auto auto auto;
}

.brandimage img {
    margin-top: 6%;
    width: 92%;
}
/* Container needed to position the overlay. Adjust the width as needed */
.container {
    position: relative;
    width: 100%;
    max-width: 400px;
}




/* The overlay effect (full height and width) - lays on top of the container and over the image */
.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 43.5vh;
    width: 88%;
    opacity: 0;
    transition: .3s ease;
    background-color: rgba(0, 0, 0, 0.4);
    margin-top: 5.5%;
    margin-left: 2%;
}

/* When you mouse over the container, fade in the overlay icon*/
.container:hover .overlay {
    opacity: 1;
}

/* The icon inside the overlay is positioned in the middle vertically and horizontally */
.icon {
    color: white;
    font-size: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    text-decoration: none;
}

/* When you move the mouse over the icon, change color */
.fa-user:hover {
    color: #eee;
}







.footer-container {
    display: flex;
    justify-content: space-around;
    background-color: rgba(128, 128, 128, 0.121); 
    
    
    /* color: #fff; */
    padding: 20px;
    flex-wrap: wrap;
    padding-top: 2%;
    margin-top: 3%;
  }
  
  .footer-section {
    margin: 10px;
  }
  
  .footer-section h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
  }
  
  .footer-section p, .footer-section a {
    color: black;
    text-decoration: none;
    margin: 5px 0;
  }
  
  .footer-section a:hover {
    text-decoration: underline;
  }
  
  .footer-logo {
    max-width: 150px;
    height: auto;
  }
  
  .footer-bottom {
    text-align: center;
    padding: 10px;
    background-color: #22222231;
    color: #ccc;
  }
  .footimg{
    background-color: rgba(128, 128, 128, 0.121); 
    padding-bottom: 1%;
  }
  .footer-bottom p {
    margin: 0;
  }