@import url('https://fonts.googleapis.com/css2?family=Karantina:wght@300;400;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body{
    min-height: 100vh;
    margin: 0;
    font-family: Poppins;
    color: #ffffff;
    background-color: #f9f9f9;
   
  
   
}
*{
    padding: 0;
    margin: 0;
}
.logo1 {
    width: 50px; 
    height: auto; 
}

header{
    width: min(1200px, 90vw);
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding-top: 50px;
    height: 0px;
    flex-wrap: wrap;
}
.see-recipes-btn {
    background-color: #ff9800; /* Default button color */
    color: #fff;
    font-size: 14px;
    padding: 10px 29px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, background-color 0.3s ease;
    margin-left: 78px;
    margin-top: 10px;

}
.left {
    position: relative;
    z-index: 2; 
    margin-bottom: 30px;
}
/* Container for tins */
.tins-container {
    display: flex;
    justify-content: flex-start; 
    gap: 10px;
    margin-top: 10px; 
   
}

/* Styling for tin images */
.tin {
    width: 90px; /* Small size for the tins */
    height: auto; /* Maintain aspect ratio */
    transition: transform 0.3s ease;
}

/* Hover effect for tin images */
.tin:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
    cursor: pointer; /* Add pointer cursor on hover */
}



.see-recipes-btn:hover {
    background-color: #f20505; /* Change background color on hover */
    transform: scale(1.05); /* Slightly enlarge the button */
}

header h1{
    font-family: "Karantina", system-ui;
    font-size: 4vw;
    line-height: 0.8em;
}
header .author{
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
header h3{
    font-family: "Karantina", system-ui;
    font-size: 5vw;
}
header .author div{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .author div p:nth-child(2){
    font-weight: 500;
}

header .author img{
    width: 250px;
}
.banner{
    margin-top: -50px;
    height: 100vh;
    overflow: hidden;
    position: relative;
}
.product{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 110px;
    z-index: 2;
    width: 500px;
    transition: 0.7s;
}
.product .soda{
    position: absolute;
    bottom: 0;
    left: calc(50%);
    transform: translateX(-50%);
}
.soda{
    --left: 0px;
    background: 
        var(--url) var(--left),
        url(images/mockup.png) 0 0;
    background-size: auto 100%;
    width: 280px;
    aspect-ratio: 2 / 4;
    background-blend-mode: multiply;
    transition: 0.8s;
    mask-image: url(images/mockup.png);
    mask-size: auto 100%;
}
.soda:nth-child(2){
    opacity: 0;
}
.product:hover{
    bottom: 300px;
}
.product:hover .soda:nth-child(2){
    opacity: 1;
    --left: 500px;
}
.product:hover .soda:nth-child(1){
    opacity: 0;
    --left: 500px;
}

.rock{
    position: absolute;
    inset: 0 0 0 0;
    width: 100%;
    pointer-events: none;
}
.rock img:nth-child(1){
    position: absolute;
    height: 170px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    transition: 0.7s;
    z-index: 1;
}
.rock img:nth-child(2){
    position: absolute;
    height: 50%;
    left: 0;
    bottom: -15px;
    transition: 0.7s;
    
}
.rock img:nth-child(3){
    position: absolute;
    height: 100%;
    right: 0;
    bottom: -311px;
    rotate: -25deg;
    transition: 0.7s;
}
.banner:has(.product:hover) .rock img:nth-child(1){
    transform: translateX(-50%) translateY(50px);
}
.banner:has(.product:hover) .rock img:nth-child(2){
    transform: translateX(-100px) translateY(100px);
}
.banner:has(.product:hover) .rock img:nth-child(3){
    transform: translateX(100px) translateY(100px);
}
@media screen and (max-width: 1023px) {
    
    .soda{
        width: 400px;
    }
}
@media screen and (max-width: 767px) {
    .soda{
        width: 250px;
    }
    header img{
        display: none;
    }
    header .author{
        width: 100%;
    }

}

.banner{
    width: 100%;
    height: 100vh;
    text-align: center;
    overflow: hidden;
    position: relative;
}
.banner .slider{
    position: absolute;
    width: 200px;
    height: 250px;
    top: 10%;
    left: calc(50% - 100px);
    transform-style: preserve-3d;
    transform: perspective(1000px);
    animation: autoRun 20s linear infinite;
    z-index: 2;
}
@keyframes autoRun{
    from{
        transform: perspective(1000px) rotateX(-16deg) rotateY(0deg);
    }to{
        transform: perspective(1000px) rotateX(-16deg) rotateY(360deg);
    }
}
.new-section {
    min-height: 100vh;
    margin: 0;
    color: #eee7e7;
    background: linear-gradient(to right, #007bfff3, #689ae0); /* Corrected gradient syntax */
    display: flex;
    
}
.new-section h2 {
    font-size: 2.5em;
    margin-left: 460px;
    padding-top: 20px; 
    text-align: right; 
    color: #ffffff;
}



.wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    height: 400px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: start;
    margin-bottom: 50px;
}
.card {
    width: 80px;
    border-radius: .75rem;
    background-size: cover;
    cursor: pointer;
    overflow: hidden;
    border-radius: 2rem;
    margin: 20px 10px; /* Adjust this value to bring the cards lower */
    display: flex;
    align-items: flex-end;
    transition: .6s cubic-bezier(.28,-0.03,0,.99);
    box-shadow: 0px 10px 30px -5px rgba(0,0,0,0.8);
    
}

body {
    background-color: #eeeeea;
}

.wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    height: 400px;
  
    flex-wrap: nowrap;
    justify-content: start;
}
.home .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/* Recipe Card Styles */
.recipe-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    text-align: center;
    position: relative;
    border: 5px solid transparent; /* Transparent border */
    background: linear-gradient(white, white) padding-box, 
                linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet) border-box;
    border-radius: 10px; /* Matches the card corners */
    transition: transform 0.3s ease;
    overflow: hidden;
}

/* Hover Effect: Add Animation */
.recipe-card:hover {
    transform: scale(1.05); /* Slight zoom effect */
    background: linear-gradient(white, white) padding-box, 
                linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet) border-box;
    animation: move-border 2s linear infinite;
}



/* Card Content */
.recipe-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.recipe-card h3 {
    color: #333;
    margin: 15px 0;
}

.recipe-card p {
    color: #555;
}




/* Basic Reset and Layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Services Section */
#our-services {
    position: relative;
    background-color: rgba(0, 0, 0, 0.5); /* Optional overlay color */
    padding: 50px 0;
    color: rgb(0, 0, 0); /* Adjust text color for better visibility */
}

/* Background Video */
#our-services .background-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Make sure video is in the background */
}

/* Services Heading */
.services-heading {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
    z-index: 1; /* Ensure heading is in front of the video */
}

/* Services Container */
.services-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    z-index: 1; /* Ensure container is in front of the video */
}

/* Service Card Styling */
.service-card {
    background: rgba(255, 255, 255, 0.53); /* Light background with opacity */
    padding: 20px;
    width: 250px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Center Image */
.service-card img {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
}

/* Heading and Paragraph Styling */
.service-card h3 {
    font-size: 18px;
    margin: 20px 0;
}

.service-card p {
    color: #555;
}

/* Hover Effect */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
/* About Us Section */
#about-us {
    background-color: #f2f2f2; /* Light gray background */
    padding: 50px 0;
}

/* About Container */
.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Side: Logo */
.about-logo {
    flex: 1;
    text-align: center;
}

.about-logo .logo {
    width: 250px; /* Adjust size of the logo */
    height: auto;
}

/* Right Side: Content */
.about-content {
    flex: 2;
    padding: 0 20px;
}

.about-content h2 {
    font-size: 48px; /* Increase font size */
    margin-bottom: 20px;
    color: black; /* Change color to black */
}

.about-content p {
    font-size: 22px; /* Increase font size */
    color: black; /* Change color to black */
    line-height: 1.6;
}




/* Reviews Section */
#reviews {
    background-color: #f9f9f9;
    padding: 50px 0;
    text-align: center;
}

.reviews-heading {
    font-size: 36px;
    color: black;
    margin-bottom: 30px;
}

/* Reviews Container */
.reviews-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Review Card */
.review-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Profile Image */
.profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

/* Profile Name */
.review-profile h3 {
    font-size: 20px;
    color: black;
    margin-bottom: 10px;
}

/* Review Rating */
.review-rating {
    margin-bottom: 20px;
}

.star {
    color: #FFD700; /* Gold color for stars */
    font-size: 20px;
}

/* Review Text */
.review-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}
.contact-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #007bff; /* Blue color */
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-btn:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: scale(1.05); /* Slight scale effect on hover */
}

.contact-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Form */
.contact-form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 10px;
    color: #fff;
    width: 80%;
    max-width: 500px;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 20px;
}

.input-field {
    margin-bottom: 15px;
}

.input-field label {
    display: block;
    font-size: 14px;
    color: #fff;
    margin-bottom: 5px;
}

.input-field input,
.input-field textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-top: 5px;
}

/* Styling for button1 */
.button1 {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50; /* Green background */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.button1:hover {
    background-color: #45a049; /* Slightly darker green on hover */
}

.button1:active {
    transform: scale(0.98); /* Button shrinks slightly when clicked */
}
