
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'EB Garamond', serif;
    background-color: white;
    text-align: center;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    border-bottom-right-radius: 20%;
    border-bottom-left-radius: 20%;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
    z-index: 1000;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.nav {
    display: none;
    margin-left: auto;
    padding-right: 20px;
}

.nav a {
    text-decoration: none;
    font-size: 20px;
    color: #714284;
    margin-left: 20px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav a:hover {
    border-bottom: 2px solid #714284;
}

/* Scroll effect */
.scrolled .header {
    justify-content: space-between;
    padding: 10px 20px;
}

.scrolled .logo {
    width: 60px;
    height: 60px;
    margin-left: 60px;
}

.scrolled .nav {
    display: flex;
    margin-right: 60px;
}

.container {
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.main-text {
    font-family: 'Great Vibes', cursive;
    font-size: 70px;
    font-weight: bold;
    color: #714284;
}

.sub-text {
    font-size: 18px;
    color: rgb(45, 45, 45);
    margin-top: 10px;
    width: 60%;
}

.shop-btn {
    margin-top: 30px;
    padding: 10px 20px;
    font-size: 18px;
    color: white;
    background-color: #714284;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

.shop-btn:hover {
    background-color: white;
    color: #714284;
    border: 1px solid #714284;
    font-weight: bold;
    transition: all 0.5s;
}


/* ------------------------------------ */

.product-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #71428420;
}

.product-section h2 {
    font-size: 36px;
    color: #714284;
    margin-bottom: 20px;
}

.product-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.product {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
    overflow: hidden;
    display: inline-block;
}

.product:hover{
    border-radius: 10px;
}

.product img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
}

.product img:hover{
    transform: scale(1.1);
    border-radius: 10px;
}

.product h3 {
    margin-top: 10px;
    font-size: 20px;
    color: #714284;
}

.product p {
    font-size: 16px;
    color: rgb(45, 45, 45);
}

.product.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ------------------------------------ */


.about{
    height: 100vh;
    padding: 100px;
}

.about h1{
    font-family: 'Great Vibes', cursive;
    font-size: 70px;
    font-weight: bold;
    color: #714284;
    text-align: left;
}

.overup div{
    text-align: left;
    margin: 20px;
}

.overup div h2{
    font-size: 30px;
    font-weight: bold;
    color: #714284;
    margin-bottom: 5px;
}
.overup div p{
    font-size: 20px;
    color: rgb(45, 45, 45);
}

/* ------------------------------------ */

.contact{
    height: 40vh;
    background-color: #71428420;
    color: #714284;
    padding: 50px;
    padding-left: 200px;
    display: flex;
    justify-content: left;
    align-items: start;
    gap: 100px;
}

.contact div p {
    color: rgb(45, 45, 45);
}

.left{
    gap: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
    font-family: 'Great Vibes', cursive;
    font-size: 24px;
}

.right{
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 10px;
   
}
.middle{
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 10px;
}

.footer-endline{
    padding: 10px;
    background-color: #714284;
    color: white;
}

/* mobile screen */

@media only screen and (max-width:767px) {

.logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.nav {
    /* display: none; */
    margin-left: auto;
    padding-right: 15px;
}

.nav a {
    text-decoration: none;
    font-size: 12px;
    color: #714284;
    margin-left: 10px;
    font-weight: bold;
    transition: color 0.3s ease;
    /* display: none; */
}

.nav a:hover {
    border-bottom: 2px solid #714284;
}

/* Scroll effect */
.scrolled .header {
    justify-content: space-between;
    padding: 10px 10px;
}

.scrolled .logo {
    width: 60px;
    height: 60px;
    margin-left: 60px;
}

.scrolled .nav {
    display: flex;
    margin-right: 60px;
}

.container {
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.main-text {
    font-family: 'Great Vibes', cursive;
    font-size: 40px;
    font-weight: bold;
    color: #714284;
    width: 90%;
}

.sub-text {
    font-size: 18px;
    color: rgb(45, 45, 45);
    margin-top: 10px;
    width: 80%;
}


.about{
    height:auto;
    padding: 30px;
}


.contact{
    height: auto;
    padding: 20px;
    display: flex;
    justify-content: left;
    align-items: start;
    gap: 10px;
    flex-direction: column;
}

.contact div p {
    color: rgb(45, 45, 45);
}

.left{
    gap: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    font-family: 'Great Vibes', cursive;
    font-size: 24px;
}

.right{
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 10px;
   
}
.middle{
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 10px;
}

.footer-endline{
    padding: 10px;
    background-color: #714284;
    color: white;
}



}



/* tablet screen  */

@media only screen and (min-width:768px) and (max-width:1023px) {
   
    

.about{
    height:auto;
    padding: 30px;
}


.contact{
    height: auto;
    padding: 20px;
    display: flex;
    justify-content: left;
    align-items: start;
    gap: 10px;
    flex-direction: column;
}

.contact div p {
    color: rgb(45, 45, 45);
}

.left{
    gap: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    font-family: 'Great Vibes', cursive;
    font-size: 24px;
}

.right{
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 10px;
   
}
.middle{
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 10px;
}

.footer-endline{
    padding: 10px;
    background-color: #714284;
    color: white;
}
}



