* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Fjalla One', sans-serif;
    user-select: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    line-height: 1.5;
    /* background-color: #E8D7F1; */
}

a:link {
    text-decoration: none;
    color: black;
}

a:visited {
    text-decoration: none;
    color: black;
}

a:hover {
    text-decoration: solid;
    color: red;
}

div.header {
    height: 85px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 0px 5px;
    border-bottom: 1px solid #a4a3a3;
}

div.logobox {
    width: fit-content;
}

p.logo {
    width: fit-content;
    margin-left: 32px;
    font-size: 24px;
    margin-top: 30px;
    cursor: default;
}

.menubox {
    width: fit-content;
    display: flex;
    justify-content: flex-end;
    height: 100%;
    margin-right: 12px;
}

.menu-item {
    display: flex;
    width: fit-content;
    margin-left: 35px;
    margin-right: 5px;
    padding: 4px;
}

.menu-links {
    height: fit-content;
    margin-top: 30px;
    margin-right: 5px;
    font-size: 18px;
}

.heading-main {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e1e2e3;
    padding: 20px 0;
}

h1 {
    text-align: center;
    width: fit-content;
    color: #333;
    cursor: default;
    height: fit-content;
}

#topBtn {
    display: none;
    /* Hidden initially */
    position: fixed;
    /* Sticks to viewport */
    bottom: 20px;
    right: 30px;
    z-index: 99;
    width: 25px;
    height: 25px;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    font-size: 18px;
}

#topBtn:hover {
    background: #e1e2e3;
    transform: scale(1.1);
    /* Optional hover effect */
}

#topBtnImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery {
    display: grid;
    padding-top: 10px;
    padding-bottom: 20px;
    padding-left: 100px;
    padding-right: 100px;
    background-color: #e1e2e3;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.gallery-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    cursor: pointer;
}

.gallery-item p {
    padding: 15px;
    text-align: center;
    color: #666;
    cursor: default;
}

.img-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    /* Adds a premium feel */
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.img-modal-container {
    background: #fff;
    display: flex;
    flex-direction: row;
    /* Side-by-side */
    max-width: 1000px;
    /* width: 90%; */
    max-height: 80vh;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.img-modal.show {
    display: flex;
}

.img-modal-content {
    width: 60%;
    object-fit: cover;
    background: #f4f4f4;
}

#imgModalCaption {
    width: 40%;
    padding: 40px;
    color: #333;
    /* Dark text on white background for readability */
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#imgModalCaption strong {
    font-size: 28px;
    color: #000;
    margin-bottom: 15px;
    border-bottom: 2px solid red;
    /* Using your red accent */
    display: inline-block;
    width: fit-content;
}

.img-modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}

.sec1-b {
    margin-top: 20px;
}

.shop-now {
    background-color: #0E273C;
    /* Matching your accent color */
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s;
}

.shop-now:hover {
    background-color: rgb(146, 35, 35);
    text-decoration: none;
}

.footer {
    /* border: 1px solid wheat; */
    background-color: #121212;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-p {
    font-size: 20px;
    color: white;
    cursor: default;
}

.footer-left {
    position: absolute;
    left: 20px;
    display: flex;
}

.footer-left a:link {
    color: white;
}

.footer-left a:visited {
    color: white;
}

.footer-left a:hover {
    color: red;
}

.footer-icon {
    width: 25px;
    height: 25px;
    margin: 5px;
}

img.footer-icon {
    filter: invert(1);
}