* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #ecb35f;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
}

.header {
    top: 0;
    z-index: 1;
}

h1 {
    font-size: 4rem;
    margin: 8px;
    padding: 0 16px 8px 16px;
}

.pageLogo-title {
    color: black;
    text-decoration: none;
}

.navbar {
    border-bottom: rgb(44, 43, 43) double 5px;
    display: grid;
    grid-template: 1fr / repeat(2, 50%);
}

.navbar .menu-links {
    align-items: center;
    display: flex;
    justify-content: space-around;
    padding-left: 0;
    width: 100%;
}

.navbar li {
    display: inline-block;
    list-style-type: none;
}

.right-menu {
    color: black;
    font-size: 0.8rem;
    font-style: italic;
    text-decoration: none;
    text-transform: uppercase;
}

.right-menu:hover {
    font-weight: 700;
    text-decoration: overline;
    transition: font-weight 0.15s, text-decoration 0.15s;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
}

.container {
    display: flex;
    align-items: flex-start;
    width: 100%;
    min-height: 100vh;
}

.sidebar {
    width: 250px;
    height: 100%;
    padding: 15px;
    /* position:absolute; */
    left: 0;
    overflow-y: auto; 
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-btn {
    width: 100%;
    padding: 12px;
    background: #283618; 
    color: #ffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-align: center;
}

.sidebar-btn:hover {
    color: #1BBD97;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
}

.sidebar ul li {
    margin: 15px 0;
    letter-spacing: 2px;
}

.sidebar ul li a {
    color: rgb(12, 168, 25);
    text-decoration: none;
    padding: 10px 0;
    font-size: 18px;
    display: block;
    border-radius: 10px;
    transition: 0.3s;
}

.sidebar ul li a:hover {
    background-color: rgb(12, 168, 25);
    color: white;
}

.main_content {
    flex: 1;
    width: 100%;
    min-height: 100vh;
    background: url('/images/bgmaincontent.jpg') no-repeat center center;
    background-size: cover; 
    background-attachment: fixed; 
    display: flex;
    justify-content: center; 
    align-items: center; 
    padding: 50px 20px;
}

.main_content::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.Welcome_description, 
.main_content_description {
    position: relative;
    z-index: 2; 
    background: rgba(26, 20, 20, 0.8); 
    padding: 30px;
    border-radius: 10px;
    max-width: 90%;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.main_content_gold {
    flex: 1;
    width: 100%;
    min-height: 100vh;
    background: url('/images/bggold.jpg') no-repeat center center;
    background-size: cover; 
    background-attachment: fixed; 
    display: flex;
    justify-content: center; 
    align-items: center; 
    padding: 50px 20px;
    
}

.main_content_silver {
    flex: 1;
    width: 100%;
    min-height: 100vh;
    background: url('/images/bgsilver.jpg') no-repeat center center;
    background-size: cover; 
    background-attachment: fixed; 
    display: flex;
    justify-content: center; 
    align-items: center; 
    padding: 50px 20px;  
}

.main_content_diamond {
    flex: 1;
    width: 100%;
    min-height: 100vh;
    background: url('/images/bgdiamond.jpg') no-repeat center center;
    background-size: cover; 
    background-attachment: fixed; 
    display: flex;
    justify-content: center; 
    align-items: center; 
    padding: 50px 20px;  
}

.welcome_text,
.header_title {
    font-size: 28px;
    color: red; 
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.jewelry_description p, 
.main_content_description p {
    font-size: 18px;
    color: #d7cf07;
    line-height: 1.6;
    margin-bottom: 15px;
}

.main_content_description img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 5px;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
}

.main_content_description p strong {
    color: #B8860B;
    font-size: 18px;
}

.footer {
    display: flex;
    justify-content: space-around;
    text-align: center;
    color: black;
    gap: 24px;
    padding: 20px;
    flex-direction: row;
    width: 100%;
    margin-top: auto;
    flex-wrap: wrap;
}

.footer-copyright{
    font-size: 1rem;
    text-align: center;
}

.footer-logo h2 {
    font-size: 2rem;
    
}

.footer-contact h4 {
    font-size: 1rem;
}

.footer-contact p {
    font-size: 1rem;
}

.footer_social-media h6 {
    font-size: 1rem;
}

.footer-logo img {
    width: 50px;
    height: auto;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    body {
        display: block;
    }

    .header {
        text-align: center;
        padding: 4px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .navbar {
        display: flex;
        flex-direction: column;
        align-items: center;
        border-bottom: none;
    }

    .navbar .menu-links {
        flex-direction: column;
        gap: 10px;
    }

    .right-menu {
        font-size: 1rem;
    }

    .sidebar {
        width: 100%;
        position: relative;
        height: auto;
        padding: 10px;
        gap: 10px;
    }

    .sidebar-btn {
        font-size: 10px;
        padding: 6px;
    }

    .container {
        flex-direction: column;
        align-items: center;
    }

    .main_content, 
    .main_content_gold, 
    .main_content_silver, 
    .main_content_diamond {
        min-height: 50vh;
        padding: 30px 10px;
        background-size: cover;
        background-position: center;
    }

    .Welcome_description, 
    .main_content_description {
        max-width: 100%;
        padding: 4px;
        font-size: 8px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
    }

    .welcome_text,
    .header_title {
        font-size: 8px;
    }

    .footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo img {
        width: 40px;
    }
}

/* 🔹 Tablets (769px - 1024px) */
@media screen and (max-width: 1024px) {
    .navbar {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .navbar .menu-links {
        flex-direction: column;
    }

    .container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        height: auto;
        padding: 15px;
    }

    .main_content, 
    .main_content_gold, 
    .main_content_silver, 
    .main_content_diamond {
        min-height: 60vh;
        padding: 40px 20px;
    }

    .footer {
        flex-direction: column;
    }
}