body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #000;
    color: #fff;
}

/* Logo Header Styles */
.logo-header {
    display: flex;
    justify-content: center;
    background-color: #000;
    height: 260px; /* Match the height of the template */
}

.logo-container {
    width: 1200px;
    display: flex;
    align-items: center;
    position: relative;
    height: 100%; /* Ensure it takes the full height of the header */
}

.logo {
    width: 290px; /* Exact width of the logo */
    height: 260px; /* Exact height of the logo */
    margin-right: 0; /* No margin to align the line */
}

.gold-line {
    height: 3px;
    background-color: #a68841; /* Gold color */
    flex-grow: 1;
    margin-left: -45px; /* Slight overlap to connect line perfectly with logo */
    margin-top: 76px;
}

@media (max-width: 1200px) {
    .logo-container {
        width: 100%;
        padding: 0 20px;
    }

    .gold-line {
        margin-left: 0;
    }
}

/* Slider Styles */
.slider-section {
    display: flex;
    justify-content: center;
    background-color: #000;
}

.slider {
    width: 1200px;
    height: 800px;
    position: relative;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slides img {
    width: 1200px;
    height: 800px;
    object-fit: cover;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 400px; /* Increased left margin */
    transform: translateY(-50%);
    text-align: left;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Added light shadow */
}

.overlay-text h1 {
    font-family: 'Academy Engraved LET', serif;
    font-size: 72px; /* Adjusted size for larger text */
    font-weight: normal; /* Make the text non-bold */
    line-height: 1.2; /* Adjust line-height for better spacing */
    letter-spacing: 1px; /* Adjust letter-spacing for better readability */
}

/* Welcome Text Styles */
.text-section {
    display: flex;
    justify-content: center;
    background-color: #000;
}

.text-container {
    width: 1200px;
    background-color: #fff;
    color: #000;
}

.text-box {
    padding: 40px;
}

.text-box h2 {
    font-family: 'Futura', sans-serif;
    font-size: 36px;
    font-weight: normal;
    margin: 0 0 12px 0;
    transform: scaleX(0.7); /* Condense text horizontally */
    transform-origin: left; /* Ensure scaling starts from the left */
}

.text-box h3 {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 30px;
    font-weight: normal;
    color: #a68841;
    margin: 0 0 12px 0;
}

.text-box p {
    font-family: 'Lao Sangam MN', sans-serif;
    font-size: 22px; /* Adjusted size for larger text */
    font-weight: normal;
    line-height: 1.6;
    color: #666; /* More grey color */
    margin: 0;
}

.navigation {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.nav-dot.active {
    background-color: #fff;
}

/* Image Section Styles */
.image-section {
    display: flex;
    justify-content: center;
    background-color: #000;
    padding: 40px 0; /* Spacing from top and bottom */
}

.image-container {
    width: 1200px;
    display: flex;
    justify-content: center;
}

.image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Product Section Styles */
.product-section {
    display: flex;
    justify-content: center;
    background-color: #000; /* Ensure the main background color is black */
}

.product-container {
    width: 1120px;
    background-color: #fff; /* White background */
    display: flex;
    flex-wrap: wrap;
    gap: 40px; /* 40px spacing between items */
    padding: 40px; /* 40px padding for all sides */
}

.product-item {
    width: calc(33.333% - 26.67px); /* Three items per row with gaps */
    position: relative;
    overflow: hidden;
}

.product-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1 / 1; /* Ensure images are square */
}

.product-link {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #000;
    font-family: 'Lao Sangam MN', sans-serif;
    font-size: 20px;
}

/* Two Images Section */
.two-images-section {
    display: flex;
    justify-content: center;
    background-color: #000;
    padding: 40px 0;
}

.two-images-container {
    width: 1200px;
    display: flex;
    gap: 20px;
}

.two-images-container img {
    width: calc(50% - 10px);
    height: auto;
    object-fit: cover;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Disable scrolling */
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px); /* Add blur effect to the background */
    transition: opacity 0.5s; /* Smooth transition for lightbox appearance */
}

.lightbox-content {
    position: relative;
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    top: 50%;
    transform: translateY(-50%);
    object-fit: contain;
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(236, 234, 228, 0.7); /* Background for close button */
    border-radius: 50%;
    padding: 8px 10px 12px 10px;
    color: #000;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px; /* Adjust width and height for a perfect circle */
    height: 20px;
}

/* Disable scrolling when lightbox is open */
body.lightbox-open {
    overflow: hidden;
}

/* Footer Section */
.footer-section {
    display: flex;
    justify-content: center;
    background-color: #000;
}

.footer-container {
    width: 1200px;
    background-color: #cac0a5;
    text-align: right;
}

.footer-container p {
    margin: 5px 0;
    color: #000;
    font-family: 'Lao Sangam MN', sans-serif;
    font-size: 22px;
}