* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    font-family: "ui-monospace", Consolas, Liberation Mono, monospace;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: #ffffff;
}

header {
    width: 100%;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    z-index: 999;
}

.logo {
    font-size: 40px;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    color: #B57B4C;
}

.cart {
    font-size: 22px;
    cursor: pointer;
}

.hamburgar {
    display: none;
    transition: 0.3s;
}

.nav-bar ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-bar ul li a {
    color: #B57B4C;
    background: #ffffff;
    border: none;
    padding: 10px 15px;
    display: block;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transform: skew(-21deg);
}

.nav-bar ul li a:hover {
    color: #000000;
    background: #fff;
}

.nav-bar ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    left: 0;
    background: #B57B4C;
    opacity: 0;
    z-index: -1;
    transition: all 0.5s;
}

.nav-bar ul li a:hover {
    color: #fff;
    transition: all 0.5s;
}

.nav-bar ul li a:hover::before {
    left: 0;
    right: 0;
    opacity: 1;
}

.main-banner {
    position: relative;
    width: 100%;
}

.main-banner img {
    padding: 40px;
    margin-top: 75px;
    width: 100%;
}

.info-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    position: relative;
    top: 10px;

}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon {
    width: 45px;
    height: 45px;
    border: 3px solid burlywood;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7da38c;
    font-size: 18px;
}

.text h4 {
    font-size: 14px;
    font-weight: bold;
    color: #2c2c2c;
}

.text p {
    font-size: 13px;
    color: #666;
}

.about h3 {
    color: burlywood;
    display: flex;
    position: relative;
    top: 100px;
    margin-left: 100px;
    font-size: 50px;
    font-family: Space Grotesk, serif;
}

.features {
    display: flex;
    gap: 100px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 180px;
    padding-bottom: 100px;
}

.cardabt {
    width: 320px;
    border: 6px solid burlywood;
    padding: 30px 30px;
    text-align: center;
}

.cardabt img {
    width: 120px;
    margin-bottom: 20px;
}

.cardabt h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f3d2e;
    margin-bottom: 10px;
}

.line {
    display: block;
    width: 50px;
    height: 4px;
    margin: 0 auto 20px;
    border-radius: 2px;
}

.cardabt p {
    font-size: 15px;
    line-height: 1.6;
    color: #6f7f78;
}

/* Background colors */
.cream {
    background: #fbf7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cream:hover {
    transform: scale(1.05);
    cursor: crosshair;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.mint {
    background: #f1faf6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mint:hover {
    transform: scale(1.05);
    cursor: crosshair;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pink {
    background: #fff1f4;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pink:hover {
    transform: scale(1.05);
    cursor: crosshair;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Line colors */
.green {
    background: #996633;
}

.dark {
    background: #996633;
}

.pink-line {
    background: #996633;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto 15% auto;
    border: 1px solid #888;
    width: 40%;
    border-radius: 10px;
}

.modal-content h3 {
    text-align: center;
    margin-top: 18px;
    font-size: 26px;
}

.modal {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 25px;
}

.modal-content {
    width: 100%;
    max-width: 380px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.container {
    padding: 25px;
}

.container label {
    display: block;
    margin-bottom: 6px;
    color: #000000;
    font-size: 14px;
}

.container input[type="text"],
.container input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 18px;
    border-radius: 6px;
    border: 1px solid #374151;
    color: rgb(0, 0, 0);
    font-size: 14px;
}

.container input::placeholder {
    color: #9ca3af;
}

.container input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

.container button {
    width: 100%;
    padding: 12px;
    background: #3b82f6;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

.container button:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.container label input[type="checkbox"] {
    margin-right: 8px;
}

.container label:last-child {
    margin-top: 15px;
    font-size: 13px;
    color: #cbd5f5;
    display: flex;
    align-items: center;
}

.shop h3 {
    color: burlywood;
    display: flex;
    position: relative;
    top: 100px;
    margin-left: 100px;
    font-size: 50px;
    font-family: Space Grotesk, serif;
}

.main-card-1 {
    margin-top: 200px;
    display: flex;
    flex-direction: row;
    gap: 10px;

}

.main-card-2 {
    margin-top: 100px;
    margin-bottom: 100px;
    display: flex;
    flex-direction: row;
    gap: 10px;

}

.cardshp {
    border: burlywood solid 5px;
    border-radius: 5px;
    box-shadow: 0 16px 20px 0 rgba(235, 4, 4, 0.2);
    max-width: 300px;
    padding: 15px;
    margin: auto;
    text-align: center;
    font-family: arial;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.cardshp:hover {
    transform: scale(1.05);
    cursor: crosshair;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    box-shadow: 4px 16px 20px 4px rgba(235, 16, 16, 0.4);
}

.price {
    color: #009933;
    font-size: 24px;
    padding: 10px;
}

.cardshp p {
    color: rgb(112, 111, 111);
}

.cardshp button {
    --bg: #996633;
    --text-color: #fff;
    position: relative;
    width: 150px;
    border: none;
    background: var(--bg);
    color: var(--text-color);
    padding: 1em;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.2s;
    border-radius: 5px;
    margin: 15px;
    opacity: 0.8;
    letter-spacing: 1px;
    box-shadow: #79542e 0px 7px 2px, #000 0px 8px 5px;
}

.cardshp button:hover {
    opacity: 1;
}

.cardshp button:active {
    top: 4px;
    box-shadow: #79542e 0px 3px 2px, #000 0px 3px 5px;
}

.contact h3 {
    color: burlywood;
    display: flex;
    position: relative;
    top: 100px;
    margin-left: 100px;
    font-size: 50px;
    font-family: Space Grotesk, serif;
}

.form-container form:hover {
    transform: scale(1.05);
    cursor: crosshair;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    box-shadow: 4px 16px 24px 8px rgba(235, 16, 16, 0.4);
}

.form-container form {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-container {
    display: flex;
    justify-content: center;
    margin-top: 120px;
    padding: 40px;
}

.form-container h2 {
    font-size: 30px;
}

.form-container form {
    width: 100%;
    border-radius: 8px;
    padding: 20px;
    width: 800px;
    box-shadow: 16px 16px 24px rgba(0, 0, 0, 0.1);
}

.form-container label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
    margin: auto;
}

.form-container textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    box-sizing: border-box;
    resize: vertical;
    min-height: 100px;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

input[type="number"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    box-sizing: border-box;
}


.form-container button {
    cursor: pointer;
    font-weight: 700;
    transition: all 0.2s;
    padding: 10px 20px;
    border-radius: 100px;
    background: #0093ef;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #fff;
}

.form-container button:hover {
    background: #027cc7;
}

.form-container button>svg {
    width: 34px;
    margin-left: 10px;
    transition: transform 0.3s ease-in-out;
}

.form-container button:hover svg {
    transform: translateX(5px);
}

.form-container button:active {
    transform: scale(0.95);
}

.main-footer {
    width: 100%;
    min-height: 200px;
    background-color: burlywood;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 20px 10px;
    box-shadow: 16px 16px 20px 36px rgba(69, 235, 4, 0.4);
}

.main-footer p:not(.copyrights) {
    font-size: clamp(1.8rem, 5vw, 3rem);
    text-align: center;
    white-space: normal;
    line-height: 1.2;
}

.main-footer .copyrights {
    font-size: clamp(0.9rem, 3.5vw, 1.2rem);
    text-align: center;
    color: rgb(0, 0, 0);
    white-space: normal;
}

.main-footer p {
    cursor: pointer;
    position: relative;
    display: grid;
    font-size: 3rem;
    background: linear-gradient(to bottom, #000, #000 60%, #fff 60%, #fff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-repeat: no-repeat;
    transition: background 0.2s ease-out;
    white-space: nowrap;
}

.main-footer .copyrights {
    cursor: pointer;
    position: relative;
    display: grid;
    font-size: 1.2rem;
    background: linear-gradient(to bottom, #000, #000 60%, #fff 60%, #fff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-repeat: no-repeat;
    transition: background 0.2s ease-out;
    white-space: nowrap;
}


.main-footer span {
    position: relative;
}

.main-footer p:hover {
    background-position: 0 11px;
}

.main-footer span:hover:before {
    transform: translateY(10px)
}

/* Responsive */

@media (max-width: 480px) {

    .main-footer {
        min-height: 160px;
    }

    .container {
        padding: 20px;
    }

    .container input,
    .container button {
        font-size: 14px;
    }

    .hamburgar {
        display: block;
        cursor: pointer;
    }

    .hamburgar .line {
        width: 30px;
        height: 3px;
        background: #996633;
        margin: 6px 0;
    }
}

@media (max-width: 768px) {
    .info-bar {
        flex-direction: column;
        gap: 15px;
        display: grid;
        align-items: center;
    }
}

@media only screen and (max-width: 900px) {

    .cart {
        color: white;
    }

    .modal {
        margin-top: 100px;
    }

    .about h3 {
        margin-left: 50px;
    }

    .shop h3 {
        margin-left: 50px;
    }

    .contact h3 {
        margin-left: 50px;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .main-card-1 {
        flex-direction: column;
        align-items: center;
    }

    .cardshp {
        margin-top: 50px;
    }

    .main-card-2 {
        margin-top: 50px;
        flex-direction: column;
        align-items: center;
    }

    .main-banner img {
        position: relative;
        padding: 5px;
        margin-top: 100px;
    }

    .hamburgar {
        display: block;
        cursor: pointer;
    }

    .hamburgar .line {
        width: 30px;
        height: 3px;
        background: #996633;
        margin: 6px 0;
    }

    .nav-bar {
        height: 0;
        position: absolute;
        top: 90px;
        left: 0;
        right: 0;
        width: 100vw;
        background: #81593e;
        transition: 0.5s;
        overflow: hidden;
    }

    .nav-bar.active {
        top: 100px;
        height: 450px;
    }

    .nav-bar ul {
        display: block;
        width: fit-content;
        margin: 80px auto 0 auto;
        text-align: center;
        transition: 0.5s;
        opacity: 0;
    }

    .nav-bar.active ul {
        opacity: 1;
    }

    .nav-bar ul li a {
        margin-bottom: 12px;
    }
}

/* animate */

/* Animation */
@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}