/*------------------------------------------------NAVBAR----------------------------------------*/
.nav {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    z-index: 9;
    padding-left: 50px;
    padding-right: 50px;
    display: flex;
    box-shadow: 0px 3px 65px 0px rgba(0, 0, 0, .15);
    border-bottom: 1px solid rgba(204, 0, 95, 0.1);
}

.nav_top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
}

.logo {
    float: left;
    width: 50%;
}

.logo img {
    padding: 8px;
    width: 30%;
    margin-left: 10%;
}

.nav_side {
    float: right;
    width: 45%;
    margin-top: 20px;
}

.nav_side a {
    text-decoration: none;
    margin-right: 10px;
    margin-left: 22px;
    margin-top: 20px;
    padding: 15px 20px;
    color: #1a1a1a;
    font-weight: 700;
    font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
    font-size: 16px;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav_side a:hover {
    color: #cc005f;
    background: rgba(204, 0, 95, 0.1);
    border-color: rgba(204, 0, 95, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(204, 0, 95, 0.2);
}

.nav_side a:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(204, 0, 95, 0.15);
}

/*-------------------------------------------FIRST CAROUSEL----------------------------------------*/
.slide {
    padding: 0px;
    height: 30px;
}

.slide .slide_container {
    text-align: center;
}

.slide .slide_container .carousel-inner {
    box-shadow: none;
}

.slide .slide_container .item {
    width: 100%;
    ;
    box-shadow: none;
}

.slide .slide_container .item .item_img {
    width: 100%;
    overflow: hidden;
    text-align: center;
}

.slide .slide_container .item .item_img img {
    width: 100%;
    overflow: hidden;
    height: 530px;
}

.slide_con {
    background-image: url("images/back.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 90vh;
}

.slide_con .slide_content {
    padding-top: 10%;
    margin-left: 10%;
    margin-right: 10%;
}

.slide_con .slide_content h2 {
    color: white;
    font-size: 430%;
    font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
    font-weight: bolder;
    text-align: center;
    line-height: 35px;
    position: relative;
}

.slide_con .slide_content h2 span {
    font-size: 40%;
    opacity: 0.9;
    font-weight: 400;
    line-height: 20px;
}

.slide_con .slide_content .slide_btn {
    margin-top: 8%;
    text-align: center;
    width: 100%;
    position: relative;
}

.slide_con .slide_content .slide_btn a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    color: white;
    font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
    text-align: center;
    padding: 15px 35px;
    background: linear-gradient(135deg, #cc005f, #a8004d, #cc005f);
    background-size: 200% 200%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(204, 0, 95, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: gradientShift 3s ease-in-out infinite;
}

.slide_con .slide_content .slide_btn a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
}

.slide_con .slide_content .slide_btn a::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide_con .slide_content .slide_btn a:hover {
    background: linear-gradient(135deg, #a8004d, #cc005f, #a8004d);
    background-size: 200% 200%;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 35px rgba(204, 0, 95, 0.5), 0 0 0 2px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    animation: gradientShift 1.5s ease-in-out infinite;
}

.slide_con .slide_content .slide_btn a:hover::before {
    left: 100%;
}

.slide_con .slide_content .slide_btn a:hover::after {
    opacity: 1;
}

.slide_con .slide_content .slide_btn a:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(204, 0, 95, 0.4);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/*------------------------------------------------SIDE----------------------------------------*/
.side {
    margin-top: 5%;
    margin-bottom: 5%;
    display: flex;
    text-align: center;
    font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
}

.side .left {
    float: left;
}

.side .right {
    float: right;
    padding-left: 10%;
}

.side .right h2 {
    font-size: 250%;
}

.side .right p {
    width: 50%;
    font-size: 140%;
    margin-left: 25%;
    margin-top: 8%;
}

.side .right .side_btn {
    margin-top: 3%;
}

.side .right .side_btn a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    color: white;
    font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
    text-align: center;
    padding: 12px 30px;
    background: linear-gradient(135deg, #cc005f, #a8004d, #cc005f);
    background-size: 200% 200%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 35px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(204, 0, 95, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: gradientShift 4s ease-in-out infinite;
}

.side .right .side_btn a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.8s ease;
}

.side .right .side_btn a::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.side .right .side_btn a:hover {
    background: linear-gradient(135deg, #a8004d, #cc005f, #a8004d);
    background-size: 200% 200%;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 30px rgba(204, 0, 95, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    animation: gradientShift 2s ease-in-out infinite;
}

.side .right .side_btn a:hover::before {
    left: 100%;
}

.side .right .side_btn a:hover::after {
    opacity: 1;
}

.side .right .side_btn a:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 6px 20px rgba(204, 0, 95, 0.3);
}

/*------------------------------------------------MAIN----------------------------------------*/
.main {
    background-image: url("images/back.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 60vh;
}

.main .main_content {
    padding: 100px;
    text-align: center;
}

.main .main_content h2 {
    color: white;
    background-color: rgb(0, 53, 0);
    font-size: 38px;
    font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
    font-weight: bolder;
    text-align: center;
    line-height: 35px;
    width: 50%;
    padding: 50px;
    padding-left: 100px;
    padding-right: 100px;
    border-radius: 50%;
    margin-left: 250px;
    margin-right: 200px;
    margin-top: -10px;
    border: 6px solid rgb(7, 126, 80);
    box-shadow: 6px 6px rgba(0, 0, 0, .45);
}

.main .main_content h2 span {
    font-size: 30%;
    opacity: 0.9;
    font-weight: 400;
    line-height: 20px;
    font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
}

/*--------------------------------------------PRODUCTS----------------------------------------*/
.product {
    padding-bottom: 50px;
}

.product h2 {
    font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
    color: rgb(92, 0, 47);
    font-size: 35px;
    text-align: center;
    padding: 20px;
}

.product .cards-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product .product_container {
    width: 100%;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    margin-left: 5%;
    margin-right: 5%;
}

.product .product_container .item {
    width: 25%;
    min-width: 270px;
    margin: 10px;
    height: 10%;
    padding: 10px;
    padding-bottom: 15px;
    border-radius: 20px;
    transition: 1s;
}

.product .product_container .item:hover {
    box-shadow: 0px 3px 65px 0px rgb(255, 189, 165);
    transition: 1s;
}

.product .product_container .item .item_img {
    width: 100%;
    height: 20%;
    overflow: hidden;
    border-radius: 12px;
}

.product .product_container .item .item_img img {
    width: 100%;
    height: 20%;
}

.product .product_container .item .item_content {
    text-align: center;
}

.product .product_container .item .item_content h3 {
    font-size: 15px;
    font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
    line-height: 15px;
}

.product .product_container .item .item_content p {
    font-size: 15px;
    line-height: 15px;
    font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
}

.product .product_container .item .item_content a {
    text-decoration: none;
    padding: 5px 10px;
    font-weight: bold;
    border-radius: 12px;
    color: rgb(212, 0, 106);
    font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
    text-align: center;
    border: 3px solid rgb(212, 0, 106);
    transition: 0.5s;
}

.product .product_container .item .item_content a:hover {
    background-color: rgb(212, 0, 106);
    color: white;
    border: none;
    transition: 0.5s;
}

/* Arrows for mobile slider */
.arrow {
    transform: translateY(-50%);
    border: none;
    padding: 12px 14px;
    border-radius: 40%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    /* Hidden by default, JS shows it on mobile */
}

.arrow.left {
    left: -10px;
}

.arrow.right {
    right: -10px;
}
@media screen and (min-width: 769px) {
    .product .product_container {
        overflow-x: hidden;
        justify-content: center;
    }

    .product .product_container .item {
        min-width: 200px;
    }
}
/*--------------------------------------------KEY HIGHLIGHTS----------------------------------------*/
.keypoint {
    padding: 20px;
}

.keypoint h2 {
    font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
    color: rgb(92, 0, 47);
    font-size: 35px;
    text-align: center;
}

.keypoint .key_container {
    display: flex;
}

.keypoint .key_container .key_content {
    width: 40%;
    padding: 20px;
    float: right;
    margin-left: 10%;
}

.keypoint .key_container .key_content li {
    list-style: none;
    margin: 15px;
    padding: 20px;
    border-left: 2px solid rgb(161, 0, 83);
    color: rgb(37, 0, 19);
    font-size: 17px;
    text-align: left;
    font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
    box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.2);
}

.keypoint .key_container .key_img {
    width: 40%;
    float: left;
    margin-left: 100px;
}

.keypoint .key_container .key_img img {
    width: 100%;

}

/*--------------------------------------------TEAM----------------------------------------*/
.team {
    padding: 50px;
}

.team h2 {
    font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
    color: rgb(92, 0, 47);
    font-size: 35px;
    text-align: center;
}

.team .team_container {
    display: flex;
}

.team .team_container .team_video {
    width: 50%;
    padding: 20px;
}

.team .team_container .team_video video {
    width: 100%;
    border: 8px solid rgb(161, 0, 83);
    outline: none;
}

.team .team_container .team_content {
    width: 40%;
    padding: 20px;
    margin-left: 50px;
    margin-top: 4%;
    font-size: large;
    font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
}

/*--------------------------------------------FEED----------------------------------------*/
.feed {
    background-image: url("images/feed.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 20px;
    text-align: center;
    font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    min-height: 600px;
}

.feed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.feed h2 {
    font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
    color: white;
    font-size: 42px;
    text-align: center;
    padding: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    letter-spacing: 2px;
}

.feed .feed_form {
    text-align: center;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px 40px;
    max-width: 500px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feed .feed_form:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feed .feed_form form {
    padding: 0;
}

.feed .feed_form form input {
    width: 100%;
    margin: 15px 0;
    padding: 15px 20px;
    outline: none;
    border: 2px solid rgba(204, 0, 95, 0.2);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    box-sizing: border-box;
}

.feed .feed_form form textarea {
    width: 100%;
    margin: 15px 0;
    padding: 15px 20px;
    outline: none;
    border: 2px solid rgba(204, 0, 95, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
    box-sizing: border-box;
}

.feed .feed_form form input:focus,
.feed .feed_form form textarea:focus {
    border-color: #cc005f;
    outline: none;
    box-shadow: 0 0 0 3px rgba(204, 0, 95, 0.1);
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.feed .feed_form form input::placeholder,
.feed .feed_form form textarea::placeholder {
    color: rgba(0, 0, 0, 0.6);
    font-style: italic;
}

.feed .feed_form form button {
    padding: 15px 40px;
    background: linear-gradient(135deg, #cc005f, #a8004d);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(204, 0, 95, 0.3);
    position: relative;
    overflow: hidden;
}

.feed .feed_form form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.feed .feed_form form button:hover {
    background: linear-gradient(135deg, #a8004d, #cc005f);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(204, 0, 95, 0.4);
}

.feed .feed_form form button:hover::before {
    left: 100%;
}

.feed .feed_form form button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(204, 0, 95, 0.3);
}

/* Responsive design for review form */
@media screen and (max-width: 768px) {
    .feed {
        padding: 60px 15px;
        min-height: 500px;
    }
    
    .feed h2 {
        font-size: 32px;
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .feed .feed_form {
        padding: 40px 30px;
        max-width: 100%;
        margin: 0 10px;
    }
    
    .feed .feed_form form input,
    .feed .feed_form form textarea {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .feed .feed_form form button {
        padding: 12px 30px;
        font-size: 16px;
    }
}

/*--------------------------------------------FOOTER----------------------------------------*/
footer {
    background-color: black;
    padding: 50px;
}

footer .pages {
    text-align: center;
}

footer .pages h3 {
    color: rgb(255, 226, 243);
    font-size: 20px;
    font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
    padding: 5px;
    font-weight: bold;
}

footer .pages a {
    text-decoration: none;
    margin: 10px;
    color: rgba(255, 226, 243, 0.808);
    font-size: 15px;
    font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
}

footer .pages a:hover {
    color: white;
}

footer .doc {
    text-align: center;
}

footer .doc h3 {
    color: rgb(255, 226, 243);
    font-size: 20px;
    font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
    padding: 5px;
    font-weight: bold;
}

footer .doc a {
    text-decoration: none;
    margin: 10px;
    color: rgba(255, 226, 243, 0.808);
    font-size: 15px;
    font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
}

footer .doc a:hover {
    color: white;
}

footer .social {
    text-align: center;
}

footer .social h3 {
    color: rgb(255, 226, 243);
    font-size: 20px;
    font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
    padding: 5px;
    font-weight: bold;
}

footer .contact {
    text-align: center;
}

footer .contact h3 {
    color: rgb(255, 226, 243);
    font-size: 20px;
    font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
    padding: 5px;
    font-weight: bold;
}

footer .social a {
    font-size: 30px;
    text-decoration: none;
    ;
    color: rgba(247, 193, 224, 0.904);
    margin: 10px;
}

footer .social a:hover {
    color: white;
}

footer .contact a {
    font-size: 30px;
    text-decoration: none;
    ;
    color: rgba(247, 193, 224, 0.904);
    margin: 10px;
}

footer .contact a:hover {
    color: white;
}

footer p {
    color: rgba(247, 178, 217, 0.726);
}

/*--------------------------------------------ABOUT US---------------------------------------*/
.about_us {
    padding: 100px;
}

.about_us h2 {
    font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
    color: rgb(92, 0, 47);
    font-size: 33px;
    text-align: center;
}

.about_us h5 {
    font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
    color: rgb(92, 0, 47);
    font-size: 15px;
    text-align: center;
}

.about_us p {
    text-align: center;
    padding: 15px;
    font-size: 15px;
    font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
    line-height: 25px;
}

/*--------------------------------------------CONTACT---------------------------------------*/
.contact_container {
    padding: 100px;
    ;
}

.contact_container h2 {
    font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
    color: rgb(92, 0, 47);
    font-size: 33px;
    text-align: center;
}

.contact_container .g_map {
    border: 10px solid rgb(92, 0, 47);
}

.contact_container .contact_content {
    padding: 20px;
}

.contact_container .contact_content p {
    padding: 15px;
    font-size: 15px;
    font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
    line-height: 25px;
}

/*--------------------------------------------CATERING---------------------------------------*/