@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap');

:root {
    --red: #0F2027;
    --white: #ffffff;

}

* {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: all .2s linear;
}

*::selection {
    background: var(--red);
    color: #fff;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

body {
    background: #f7f7f7;

}

section {
    padding: 2rem 9%;
}

img, video {
    max-width: 100%;
    height: auto;
}

.container,
.box-container,
.row {
    width: 100%;
}

.heading {
    text-align: center;
    font-size: 3.5rem;
    padding: 1rem;
    color: #666;
}

.heading span {
    color: var(--red);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 2rem 9%;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.1);
}

.btn {
    display: inline-block;
    padding: .8rem 3rem;
    border: .2rem solid var(--red);
    color: var(--red);
    cursor: pointer;
    font-size: 1.7rem;
    border-radius: .5rem;
    position: relative;
    overflow: hidden;
    z-index: 0;
    margin-top: 1rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background: var(--red);
    transition: .3s linear;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
    left: 0;

}

.btn:hover {
    color: #fff;
}

.btn0 {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    background-color: var(--red);
    border: 2px solid var(--red);
    border-radius: 5px;
}

header .logo {
    font-size: 2.5rem;
    font-weight: bolder;
    color: #666;
    display: flex;
    align-items: center;
}

header .logo .logo-img {
    height: 35px;
    width: auto;
    margin-right: 8px;
}

header .logo i {
    padding-right: .5rem;
    color: var(--red);
}

/* Login Button Styles */
.login-btn {
    position: relative;
    cursor: pointer;
    font-size: 2rem;
    color: #666;
    margin-left: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.login-btn:hover {
    color: var(--red);
}

/* Cart Icon Styles */
.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 2rem;
    color: #666;
    margin-left: 2rem;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Cart Sidebar Styles */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 2rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--red);
    color: #fff;
}

.cart-header h3 {
    margin: 0;
    font-size: 2rem;
}

.close-cart {
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 1rem;
}

.item-details h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.4rem;
    color: #333;
}

.item-details p {
    margin: 0 0 0.5rem 0;
    color: #666;
    font-size: 1.2rem;
}

.remove-btn {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 3px;
    cursor: pointer;
    font-size: 1rem;
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid #eee;
    background: #f9f9f9;
}

.cart-total h4 {
    margin: 0 0 1rem 0;
    font-size: 1.8rem;
    color: #333;
}

.checkout-btn {
    width: 100%;
    background: var(--red);
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 5px;
    font-size: 1.6rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.checkout-btn:hover {
    background: var(--red);
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--red);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 5px;
    z-index: 1001;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Login Modal Styles */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.login-modal.active {
    opacity: 1;
    visibility: visible;
}

.login-content {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.login-modal.active .login-content {
    transform: scale(1);
}

.login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.login-header h3 {
    margin: 0;
    color: #333;
    font-size: 2rem;
}

.close-login {
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #666;
    cursor: pointer;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 5px;
    font-size: 1.4rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--red);
}

.login-submit-btn {
    width: 100%;
    background: var(--red);
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 5px;
    font-size: 1.6rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.login-submit-btn:hover {
    background: #0a1a1f;
}

.switch-form {
    text-align: center;
    margin-top: 1rem;
    color: #666;
}

.switch-form a {
    color: var(--red);
    text-decoration: none;
    font-weight: bold;
}

.switch-form a:hover {
    text-decoration: underline;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 1rem 2rem;
    border-radius: 5px;
    z-index: 1001;
    animation: slideIn 0.3s ease;
    font-weight: bold;
}

.notification.success {
    background: #4CAF50;
    color: white;
}

.notification.error {
    background: #f44336;
    color: white;
}

header .navbar a {
    font-size: 2rem;
    margin-left: 2rem;
    color: #666;
}

header .navbar a:hover {
    color: var(--red);
}

#menu-bar {
    font-size: 3rem;
    cursor: pointer;
    color: #666;
    border: .1rem solid #666;
    border-radius: .3rem;
    padding: .5rem 1.5rem;
    display: none;
}

.home {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    min-height: 100vh;
    align-items: center;
    background: url(images/home-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.home .content {
    flex: 1 1 40rem;
    padding-top: 6.5rem;
}

.home .image {
    flex: 1 1 40rem;
}

.home .image img {
    width: 100%;
    animation: float 3s linear infinite;
}

.home .content h3 {
    font-size: 5rem;
    color: #333;
}

.home .content p {
    font-size: 1.7rem;
    color: #666;
    padding: 1rem 0;
}

.speciality .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.speciality .box-container .box {
    flex: 1 1 40rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    border: .1rem solid rgba(0, 0, 0, .3);
    cursor: pointer;
    border-radius: .5rem;
}

.speciality .box-container .box .image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: -100%;
    left: 0;
}

.speciality .box-container .box .content {
    text-align: center;
    background: #fff;
    padding: 2rem;
}

.speciality .box-container .box .content img {
    margin: 1.5rem 0;
}

.speciality .box-container .box .content h3 {
    font-size: 2.5rem;
    color: #333;
}

.speciality .box-container .box .content p {
    font-size: 1.6rem;
    color: #666;
    padding: 1rem 0;
}

.speciality .box-container .box:hover .image {
    top: 0;
}

.speciality .box-container .box:hover .content {
    transform: translateY(100%);
}

.popular .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.popular .box-container .box {
    padding: 2rem;
    background: #fff;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.1);
    border: .1rem solid rgba(0, 0, 0, .3);
    border-radius: .5rem;
    text-align: center;
    flex: 1 1 40rem;
    position: relative;

}

.popular .box-container .box img {
    height: 25rem;
    object-fit: cover;
    width: 100%;
    border-radius: .5rem;
}

.popular .box-container .box .price {
    position: absolute;
    top: 3rem;
    left: 3rem;
    background: var(--red);
    color: #fff;
    font-size: 2rem;
    padding: .5rem 1rem;
    border-radius: .5rem;
}

.popular .box-container .box h3 {
    color: #333;
    font-size: 2.5rem;
    padding-top: 1rem;
}

.popular .box-container .box .stars i {
    color: gold;
    font-size: 1.7rem;
    padding: 1rem .1rem;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1rem;
}

.steps .box {
    flex: 1 1 25rem;
    padding: 1rem;
    text-align: center;

}

.steps .box img {
    border-radius: 50%;
    border: 1rem solid #fff;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.1);
}

.steps .box h3 {
    font-size: 3rem;
    color: #333;
    padding: 1rem;
}


.review .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.review .box-container .box {
    text-align: center;
    padding: 2rem;
    border: 1rem solid #fff;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .3);
    border-radius: .5rem;
    flex: 1 1 30rem;
    background: #045372;
    margin-top: 6rem;

}

.review .box-container .box img {
    height: 12rem;
    width: 12rem;
    border-radius: 50%;
    border: 1rem solid #fff;
    margin-top: -8rem;
    object-fit: cover;
}

.review .box-container .box h3 {
    font-size: 2.5rem;
    color: #fff;
    padding: .5rem 0;
}

.review .box-container .box .stars i {
    font-size: 2rem;
    color: var(--red);
    padding: .5rem 0;
}

.review .box-container .box p {
    font-size: 1.7rem;
    color: #eee;
    padding: 1rem 0;
}

.order .row {
    padding: 2rem;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.1);
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    border-radius: .5rem;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.order .row form {
    flex: 1 1 50rem;
    padding: 1rem;
}

.order .row form .inputBox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.order .row form .inputBox input,
.order .row form textarea {
    padding: 1rem;
    margin: 1rem 0;
    font-size: 1.7rem;
    color: #333;
    text-transform: none;
    border: .1rem solid rgba(0, 0, 0, .3);
    border-radius: .5rem;
    width: 100%; 
}

.order .row form textarea {
    resize: none;
    height: 15rem;
}
.order .row form .btn0 {  
    cursor: pointer; 
    margin: 20px auto 0;
    width: 240px;
    display: block;

}


.footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 50px 0;
    font-family: Arial, sans-serif;
}

.footer .credit {
    padding: 2.5rem 1rem;
    color: #000000;
    font-weight: normal;
    font-size: 2rem;
    text-align: center;
}

.footer .credit span {
    color: #0e21ce;
}

.container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.footer-content {
    flex: 1;
    padding: 0 20px;
    text-decoration: none;
}

.footer-content h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-content ul {
    list-style: none;
    padding: 0;
}

.footer-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-content ul li a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.footer-content ul li a:hover {
    color: var(--red);
}

.social-icons {
    display: flex;
    padding: 0;
    justify-content: space-between; 
}
.social-icons li {
    margin-right: 10px;
    list-style: none; 
}

.social-icons a {
    color: #333;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--red);
}

#scroll-top {
    position: fixed;
    top: -120%;
    right: 2rem;
    padding: .5rem 1.5rem;
    font-size: 4rem;
    background: var(--red);
    color: #fff;
    border-radius: .5rem;
    transition: .5s linear;
    z-index: 1000;
}

#scroll-top.active {
    top: calc(100% - 12rem);
}

.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.loader-container.fade-out {
    top: -120%;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0rem);
    }

    50% {
        transform: translateY(3rem);
    }
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    html { font-size: 59%; }
}

@media (max-width: 992px) {
    html { font-size: 56%; }
    header { padding: 1.5rem 5%; }
    section { padding: 2rem 5%; }
}

@media (max-width: 768px) {
    #menu-bar { display: inline-block; }
    header .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: .1rem solid rgba(0,0,0,.1);
        display: none;
        flex-direction: column;
        padding: 1rem 2rem;
    }
    header .navbar.active { display: flex; }
    header .navbar a { margin: 1rem 0; font-size: 2rem; }

    .home { padding-top: 10rem; }
    .home .content h3 { font-size: 3.6rem; }
    .popular .box-container .box img { height: 20rem; }
    .cart-sidebar { width: 85vw; right: -85vw; }
    .cart-sidebar.active { right: 0; }
    .container { flex-direction: column; padding: 0 2rem; }
    .footer-content { padding: 10px 0; }
}

@media (max-width: 576px) {
    html { font-size: 53%; }
    header .logo { font-size: 2rem; }
    .heading { font-size: 2.6rem; }
    .btn, .btn0 { padding: .8rem 2rem; font-size: 1.6rem; }
    .popular .box-container .box { flex: 1 1 100%; }
    .speciality .box-container .box { flex: 1 1 100%; }
}