:root{
    --black: #0f0f0f;
    --gold: #efc018;
    --cream: #f8f5ee;
    --white: #ffffff;
    --gray: #777;
}

html{
    scroll-behavior: smooth;
}

body{
    margin: 0;
    padding-top: 80px;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.navbar{
    background: rgba(0, 0, 0, 0.78);
    /* margin: 12px 12px;
    border-radius: 18px; */
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 18px 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(239, 192, 24, 0.08);
    z-index: 999;
}

.navabr .scrolled{
    background:  rgba(0, 0, 0, 0.96);
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.logo {
    width: 80px;
    transition: 0.4s ease;
}

.logo:hover{
    transform: scale(1.06);
}

/* Menu styling */
.navbar-nav .nav-link {
    color: var(--white);
    font-weight: 500;
    margin: 0 15px;
    letter-spacing: 0.5px;
    position: relative;
    transition: 0.4s ease;
}

/* Hover effect */
.navbar-nav .nav-link:hover {
    color: var(--gold);
}

/* Underline animation */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--gold);
    left: 50%;
    bottom: -6px;
    bottom: -5px;
    transition:all 0.4s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover {
    color: var(--gold);
}

.navbar-nav .nav-link:hover::after{
    width: 100%;
}

/*Links to get in center*/
.navbar .container {
    position: relative;
}

/*Toggler color*/
.navbar-toggler{
    border: 1 px solid rgba(239, 192, 24, 0.4);
    padding: 6px 10px;
    transition: 0.4s ease;
}

.navbar-toggler:hover{
    background: rgba(239, 192, 24, 0.08);
    transform: rotate(90deg);
}

.navbar-toggler:focus{
    box-shadow: none;
}

body .custom-btn{
    background: linear-gradient(135deg, #efc018, #d4a514);
    color: #000;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 10px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(239, 192, 24, 0.18);
}

body .custom-btn:hover{
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(239, 192, 24, 0.28);
}

body .custom-btn::before{
    content:"";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.7s;
}

body .custom-btn:hover::before{
    left: 100%;
}

.hero{
    height: 90vh;
    background:url(images/spices1.jpg) center/cover no-repeat;
    display: flex;
    background-size: cover;
    background-position: center;
    align-items: center;
    justify-content: center;
    color:rgb(13, 13, 12);
    position: relative;
    overflow: hidden;
    font-family: 'Times New Roman', Times, serif;
}

/*Dark overlay*/
.hero::before{
    content: "";
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    width:100%;
    height: 100%;
    background:rgba(0, 0, 0, 0.6) ;
    animation: zoomOut 10s ease forwards;
}

@keyframes zoomOut {
    from{
        transform: scale(1.15);
    }
    to{
        transform: scale(1);
    }
}

.hero .container{
    position: relative;
    z-index: 1;
}

.hero .tagline{
    background:rgba(255, 255, 255, 0.08);
    padding: 10px 10px;
    border-radius: 10px;
    border: 1px solid rgba(239, 192, 24, 0.3);
    animation: fadeUp 1.2s ease;
}

@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(30px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
} 
    
.hero .tagline h1{
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--cream);
    margin: 0;
}

.speciality {
    background: var(--black);
    color: var(--white);
    border: 1px solid rgba(239, 192, 24, 0.3);
}

.speciality-img {
    border-radius: 20px;
    height: 450px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    animation: fadeLeft 1.2s ease;
}

@keyframes fadeLeft {
    from{
        opacity: 0;
        transform: translateX(-40px);
    }
    to{
        opacity: 1;
        transform: translateX(0);
    }
}

.speciality h2 {
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 700;
    animation: fadeRight 1.2s ease;
}

.speciality-text {
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 25px;
    animation: fadeRight 1.2s ease;
}

@keyframes fadeRight{
    from{
        opacity: 0;
        transform: translateX(40px);
    }
    to{
        opacity: 1;
        transform: translateX(0);
    }
}

.point {
    margin-bottom: 15px;
    font-size: 17px;
    color: #f5f5f5;
    animation: fadeRight 1.2s ease;
}

.speciality-img {
    transition: 0.5s;
}

.speciality-img:hover {
    transform: scale(1.02);
}

.services {
    background: var(--cream);
}

.services h2{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: 600;
    color: var(--black);
}

.services p{
    font-size: 1.2rem;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: 600;
    color: var(--gray);
}

.service-card {
    background: #161616;
    border: 1px solid rgba(239, 192, 24, 0.2);
    padding: 15px;
    border-radius: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    overflow: hidden;
}

.service-card :hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-card img {
    border-radius: 12px;
    height: 220px;
    width: 100%;
    object-fit: cover;
    transition: transforn 0.5s ease;
}

.service-card:hover img{
    transform: scale(1.05);
} 

.service-card h5 {
    margin-top: 15px;
    color: var(--gold);
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: 600;
}

/* Hover effect */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* =========================
   Special Party Orders
========================= */

.party-orders {
   background: #111;
   padding: 100px 0;
}

/* Image */
.party-img {
    overflow: hidden;
    border-radius: 24px;
}

.party-img img {
    width: 70%;
    height: 100vh;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.party-img img:hover {
    transform: scale(1.05);
}

/* Content */
.party-content h2 {
    color: white;
    font-size: 42px;
    font-weight: 700;
    margin: 20px 0;
}

.party-content p {
    color: #ccc;
    line-height: 1.9;
    margin-bottom: 30px;
}

/* Top Tag */
.party-tag {
    background: rgba(239,192,24,0.12);
    color: #efc018;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

/* Features */
.party-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.party-features span {
    border: 1px solid rgba(239,192,24,0.3);
    padding: 10px 18px;
    border-radius: 30px;
    color: #efc018;
    font-size: 14px;
}

.events {
    border: 1px solid #efc018;
    background: var(--white);
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.event-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    animation: fadeRight 1.2s ease;
}

.event-btn {
    padding: 10px 20px;
    border: 1px solid var(--gold);
    border-radius: 25px;
    background: var(--black);
    color: var(--gold);
    cursor: pointer;
    transition:transform 0.3s ease;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.event-btn:hover {
    background:var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.events img{
    height: 90vh;
    object-fit: cover;
    border-radius: 12px;
    animation: fadeLeft 1.2s ease;
}

#eventCarousel img{
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.6s ease;
}

#eventCarousel img:hover{
    transform: scale(1.03);
}

.gallery h2{
    color: var(--white);
}

.gallery h2::after{
    background: var(--gold);
}

.gallery{
    background: #111;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.gallery img{
    height: 350px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    padding: 5px;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery img:hover{
    transform: scale(1.05);
}

.gallery-item{
    overflow: hidden;
    border-radius: 18px;
    position: relative;
}

.gallery-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: white;
    opacity: 0;
    transition: 0.4s ease;
}

.gallery-item:hover .gallery-overlay{
    opacity: 1;
}

.img-title{
    font-size: 16px;
    color: var(--gold);

}

.carousel-item{
    transition: transform 1s ease-in-out;
}

.about {
    background: linear-gradient(to bottom #f8f5ee, #f1ede3);
}

.about-card{
   animation: fadeUp 1s ease;
   transition: transform 0.4s ease, box-shadow 0.4s ease;
   background: linear-gradient(145deg, #151515, #1f1f1f) !important;
   border: 1px solid rgba(239, 192, 24, 0.15);
   border-radius: 24px;
   box-shadow: 0 20px 45px rgba(0,0,0,0.15);
   padding: 35px;
}

.about-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.about-content{
   animation: fadeUp 1.4s ease;
}

.about h2 {
    margin-bottom: 20px;
    color: var(--black) ;
}

.about p {
    line-height: 1.6;
    color: var(--black) ;
}

.about-img {
    border-radius: 12px;
    max-height: 350px;
    object-fit: cover;
    width: 100px;
    margin-bottom: 20px;
}

/* =========================
   Certificate Card
========================= */

.certificate-card {
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

.certificate-card:hover {
    transform: translateY(-5px);
}

.certificate-img img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: #0d0d0d;
    padding: 15px;
}

.certificate-content {
    padding: 25px;
}

.cert-badge {
    display: inline-block;
    background: rgba(239,192,24,0.15);
    color: #efc018;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.certificate-content h4 {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.certificate-content p {
    color: #ccc;
    line-height: 1.8;
    margin: 0;
}

.owner-info{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.owner-img{
    width: 95px;
    height: 95px;
    object-fit: cover;
    object-position: center 40%;
    border-radius: 50%;
    border: 3px solid var(--gold);
}

.owner-info h5{
    margin: 0;
    color: #111;
    font-weight: 700;
}

.owner-info p{
    margin: 0;
    color: #777;
}

.about-card .logo {
    width: 160px;
    margin-bottom: 25px;
}

.about-card h4{
    color: var(--cream);
    font-family: 'Courier New', Courier, monospace;
}

.about-card p{
    color: var(--white);
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.about-card hr{
    border-color: rgba(239, 192, 24, 0.3);
    margin: 20px 0;
}

.mission-box, .vision-box {
    background-image: linear-gradient(to top, #585858, rgb(253, 233, 196), #585858);
    padding: 30px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-box:hover, .vision-box:hover{
    transform: translateY(-4px);
} 

.mission-box h4,p .vision-box h4,p {
    color: var(--black);
    margin-bottom: 10px;
}

.contact {
    background: #fff8e7;
}

.contact-box {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.contact-img{
    
    width: 95px;
    height: 95px;
    object-fit: cover;
    object-position: center 40%;
    border-radius: 20%;
}

.contact-box p {
    margin: 10px 0;
    color: #444;
}

.contact-form input,
.contact-form textarea {
    border-radius: 8px;
}

.contact-form button {
    width: 100%;
}

.map iframe{
    border-radius: 10px;
}

.footer {
    background: var(--black);
    color: var(--white);
}

.footer a , p{
    color: #ccc;
    text-decoration: none;
}

.footer a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.footer-logo {
    width: 120px;
}

@keyframes heroZone {
    from{
        transform: scale(1);
    }
    to{
        transform: scale(1.08);
    }
}

@media (max-width: 991px ){
    .navbar-nav{
        text-align: center;
        margin-top: 10px;
    }

    .navbar-nav .nav-link{
        margin: 10px 0;
    }
}

@media (max-width:768px) {
    .hero{
        height:auto;
        padding: 60px 20px;
        text-align: center;
    }

    .hero h1{
        font-size: 1.6rem;
    }
    
    .hero .tagline{
        padding: 15px;
    }

    .gallery img{
        height: 250px;
    }

    .carousel-item .col-md-4{
        margin-bottom: 10px;
    }

    .mission-box, .vision-box{
        text-align: center;
    }
}

/* Responsive */

@media(max-width: 768px) {

    .party-content {
       text-align: center;
    }

    .party-content h2 {
       font-size: 32px;
    }

    .party-features {
       justify-content: center;
    }

    .party-img img{
        height: 300px;
    }

}
