*{
    margin: 0;
    padding: 0;
}

/* <img src="carrotcursor.png" style="width: 32px; height: 32px;"> */

body {
  cursor: url("./Images/cursor.cur"), auto; /* 'auto' is a fallback */
}


.header{
    min-height: 100vh;
    width: 100%;
    background:linear-gradient(#daebcd);

    
    background-position:center;
    background-size: cover;
    position:relative; 
}

nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;

}

nav img{
    width: 150px;

}
nav img:nth-child(2){
    width: 300px;
}
.nav-links {
  flex: 1;
  text-align: right;
}

.nav-links ul {
  margin: 0;
  padding: 0;
  list-style: none; /* fixed */
}

.nav-links ul li {
  display: inline-block;
  padding: 8px 12px;
  position: relative;
}

/* Default link style */
.nav-links ul li a {
  color: #fabcb9;
  font-family: 'Tahoma', sans-serif;
  font-weight: bold;
  -webkit-text-stroke: 2px rgb(227, 74, 143);
  text-decoration: none;
  font-size: 30px;
  transition: color 0.3s ease, -webkit-text-stroke-color 0.3s ease;
}

/* Hover effect */
.nav-links ul li a:hover {
  color: #ffcef7;
  -webkit-text-stroke: 2px rgb(255, 168, 198);
  text-shadow: 0 0 10px rgba(255, 182, 229, 0.7);
}

.nav-links ul li a::after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: #f59ee9;
  transition: width 0.3s;
  margin-top: 5px;
}

.nav-links ul li a:hover::after {
  width: 100%;
}

.nav-links ul li a.active::after {
  width: 100%;
  background: #fff;
}

.nav-links ul li a.active::after {
  width: 100%;
  background: #fff;
}

.text-box{
    width: 90%;
    color:#e34a8f;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, 50%);
    text-align: center;
}




.text-box h1{
    font-family:'Tahoma';
    font-weight: bold;
    font-size: 62px;
}
.text-box p{

    font-size: 25px;
    color:rgb(227, 74, 143);
}

.buttons-home{
    position: absolute;
    top: 58%;
    left: 35%;
    transform: translate(-50%, 50%);
    text-align: center;
}

.buttons-home2{
    position: absolute;
    top: 58%;
    left: 65%;
    transform: translate(-50%, 50%);
    text-align: center;
}


.chop-btn{
        font-family:'Tahoma';
    font-weight: bold;
    display:inline-block;
    text-decoration: none;
    color:#e34a8f;
    border: 1px solid #e34a8f;
    border-radius: 24px;
    padding: 12px 34px;
    font-size: 20px;
    background: #fabcb9;
    position: relative;
    cursor: pointer;
}

.shop-btn{
        font-family:'Tahoma';
    font-weight: bold;
    display:inline-block;
    text-decoration: none;
    color:#e34a8f;
    border: 1px solid #e34a8f;
    border-radius: 24px;
    padding: 12px 34px;
    font-size: 20px;
    background: #fabcb9;
    position: relative;
    cursor: pointer;
}

.chop-btn:hover{
    border: 1px solid #ffe6e5;
    background: #ffebea;
    transition: 1s;
}

.shop-btn:hover{
    border: 1px solid #ffe6e5;
    background: #ffebea;
    transition: 1s;
}

nav .fa{
    display: none;
    color: #e34a8f;
}

@media(max-width: 700px){
    .text-box h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: absolute;
        background: #fabcb9;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }

    nav .fa{
        display: block;
        color: #e34a8f;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    .nav-links ul{
        padding: 30px;
    
    }
}



/*----- About -----*/
body {
    margin: 0;
    padding: 0;
    background: #daebcd;
}
.about{

    background: #daebcd;    /* Changed to match header */

}

.about-col img{
    width: 800px;
    position: absolute;
    top: 70%; /* Adjust this value to position below buttons */
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
}

div .form-group {}