/* Base styles and reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #333;
    --secondary-color: #333;
    --dark-color: #2f4858;
    --light-color: #f6f8f9;
    --accent-color: #b8860b;
    --gold-light: #d4af37;
    --gold-medium: #b8860b;
    --gold-dark: #85754e;
    --gold-gradient: linear-gradient(135deg, #d4af37, #b8860b, #85754e);
    --text-dark: #333;
    --text-light: #f6f8f9;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--light-color);
    letter-spacing: 0.03em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    letter-spacing: 0.075em;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
}

img[loading] {
    opacity: 0;
}

img.loaded {
    opacity: 1;
}

ul {
    list-style: none;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 0.1em;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
}

/* Navbar */
.navbar {
    background-color: transparent;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgb(217, 173, 52);
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
    height: 45px;
    width: auto;
    min-width: 120px;
    opacity: 1 !important;
}

.logo img {
    height: 100%;
    width: auto;
    max-width: 100%;
    display: block;
    transition: var(--transition);
}

/* Add explicit z-index to ensure logo appears above other elements */
.navbar .logo {
    z-index: 1001;
}

/* Ensure text fallback has the right properties */
.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--dark-color);
    letter-spacing: 0.15em;
    margin-left: 10px;
    display: block !important;
    white-space: nowrap;
    opacity: 1 !important;
}

.navbar:not(.scrolled) .logo-text {
    color: white;
    opacity: 1 !important;
}

.navbar.scrolled .logo-text {
    color: var(--dark-color);
    opacity: 1 !important;
}

footer .logo-text {
    color: white;
}

/* Ensure proper spacing in footer */
.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand p {
    margin-bottom: 1.5rem;
    color: #e0e0e0;
    letter-spacing: 0.06em;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.075em;
}

.navbar:not(.scrolled) .nav-links a {
    color: rgb(255, 255, 255);
}

.navbar.scrolled .nav-links a {
    color: var(--dark-color);
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button, .hero-cta {
    background: var(--gold-gradient);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.09em;
    transition: var(--transition);
    border: none;
}

.cta-button:hover, .hero-cta:hover {
    background: linear-gradient(135deg, #b8860b, #d4af37, #b8860b);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
    color: white;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background-color: white;
    margin: 3px 0;
    border-radius: 3px;
    transition: var(--transition);
}

.navbar:not(.scrolled) .menu-toggle span {
    background-color: rgb(255, 255, 255);
}

.navbar.scrolled .menu-toggle span {
    background-color: var(--dark-color);
}

/* Updated Hero Section with centered content */
.hero {
    margin-top: 0;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 0;
    overflow: hidden;
}

/* Container for background images */
.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Background image styling */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ubah dari fill ke cover */
    transition: opacity 2s ease-in-out;
}

@media (max-width: 768px) {
    .hero-bg {
        object-fit: cover; /* Pastikan tetap cover di mobile */
    }
}

.hero-bg1 {
    background-image: url('../images/bg2.jpg');
    opacity: 1;
}

.hero-bg2 {
    background-image: url('../images/bg5.jpg');
    opacity: 0;
}

/* Updated overlay with no opacity */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0)), 
                linear-gradient(135deg, rgba(212, 175, 55, 0), rgba(184, 134, 11, 0));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
    color: var(--text-light);
    text-align: center;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.2));
    animation: fadeIn 1.5s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: center;
    font-weight: 700;
    position: relative;

    /* Black text with white shadow */
    color: #030303;
    position: relative;
    mix-blend-mode: overlay;

    /* White text shadow */
    text-shadow:
        2px 2px 4px rgb(154, 154, 139),  /* Strong white shadow */
        -1px -1px 2px rgb(255, 255, 255); /* Subtle white highlight */
}

/* Gradient animation */
@keyframes shine {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Add a subtle glow effect around the text */
.hero h1::before {
    content: "Timeless Elegance, Unmatched Durability.";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-block;
    margin: 0 auto;
}

/* Gold shine animation */
@keyframes shine {
    0% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
    100% {
        background-position: 0% center;
    }
}

/* Add a subtle underline */
.hero h1::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.275), rgba(255, 255, 255, 0.3));
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero h1::after {
        width: 70px;
    }
}

/* Add fallback for browsers that don't support background-clip */
@supports not (background-clip: text) {
    .hero h1 {
        background: none;
        color: white;
        text-shadow: 
            0 0 5px rgba(255, 255, 255, 0.3),
            0 0 10px rgba(255, 255, 255, 0.2),
            0 1px 2px rgba(0, 0, 0, 0.5);
    }
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: var(--secondary-color);
    aspect-ratio: 1/1; /* Force 1:1 aspect ratio */
    width: 100%;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container without distortion */
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #666;
}

/* Product Highlights */
.product-highlights {
    padding: 6rem 0;
    background-color: var(--light-color);
}

.product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(184, 134, 11, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.product-image {
    aspect-ratio: 1/1; /* Force 1:1 aspect ratio */
    overflow: hidden;
    background-color: var(--secondary-color);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-details {
    padding: 1.5rem;
}

.product-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.075em;
}

.product-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: #555;
    letter-spacing: 0.06em;
}

.product-details p {
    margin-bottom: 1rem;
    color: #666;
}

.product-category {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1rem;
}

.product-link {
    color: var(--gold-medium);
    font-weight: 600;
    display: inline-block;
    position: relative;
    letter-spacing: 0.09em;
}

.product-link::after {
    content: "→";
    margin-left: 5px;
    transition: var(--transition);
}

.product-link:hover::after {
    margin-left: 10px;
}

/* Product Categories */
.product-categories {
    padding: 6rem 0;
    background-color: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    padding: 2rem;
    border-radius: 8px;
    background-color: var(--light-color);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eee;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.category-icon {
    font-size: 2.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.075em;
}

.category-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

.category-card ul {
    margin-bottom: 1.5rem;
    text-align: left;
    padding-left: 1.5rem;
}

.category-card ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.category-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.category-link {
    color: var(--gold-medium);
    font-weight: 600;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--gold-medium);
    border-radius: 4px;
    transition: var(--transition);
    letter-spacing: 0.09em;
}

.category-link:hover {
    background: var(--gold-gradient);
    color: white;
    border-color: transparent;
}

/* Footer */
footer {
    background: linear-gradient(to right, #1c1c1c, #2d2d2d, #1c1c1c);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand img {
    height: 45px;
    margin-bottom: 1rem;
}

.footer-brand p {
    margin-bottom: 1.5rem;
    color: #e0e0e0;
    letter-spacing: 0.06em;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 0.08em;
}

.footer-links h4::after, .footer-contact h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #b8860b);
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #bdbdbd;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-contact a {
    color: #bdbdbd;
}

.footer-contact a:hover {
    color: white;
}

.contact-cta {
    margin-top: 1.5rem;
}

.footer-cta-button {
    display: inline-flex;
    align-items: center;
    background: var(--gold-gradient);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
    letter-spacing: 0.09em;
}

.footer-cta-button i {
    margin-right: 8px;
    font-size: 1.2rem;
    color: white;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.footer-cta-button:hover {
    background: linear-gradient(135deg, #b8860b, #d4af37, #b8860b);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

.map-container {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #9e9e9e;
}

/* Add a subtle pattern overlay */
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zm20.97 0l9.315 9.314-1.414 1.414L34.828 0h2.83zM22.344 0L13.03 9.314l1.414 1.414L25.172 0h-2.83zM32 0l12.142 12.142-1.414 1.414L30 2.828 17.272 15.556l-1.414-1.414L28 2v2.828l15.8 15.8-1.414 1.414L30 9.626l-8.485 8.484-1.414-1.414L28 8.828V6L15.856 18.142l1.414 1.414L30 6.828 42.728 19.556l1.414-1.414L32 6v2.828L27.8 28.686l-1.414 1.414L30 26.342l3.615 3.757 1.414-1.414L30 24.172v-2.828l8.485 8.485-1.414 1.414L30 23.515l-10.8 10.8-1.414-1.414L30 20.172v-2.828l-8.485 8.485 1.414 1.414L30 20.172l8.485 8.485 1.414-1.414L30 17.343v-2.828l3.8 3.8 1.414-1.414L30 12.686l-4.8 4.8-1.414-1.414L30 10.343v-2.828l-4.8 4.8 1.414 1.414L30 10.344l4.8 4.8 1.414-1.414L30 7.515v-2.83l-9.9 9.9 1.414 1.414L30 6.814l8.485 8.485 1.414-1.414L30 4.172V1.343L40.9 12.244l-1.414 1.414L30 4.172l-8.485 8.485-1.414-1.414L30 1.344V-1.48l-11.8 11.8 1.414 1.414L30 1.342l10.8 10.8 1.414-1.414L30-1.343v-2.83L41.8-2.57l-1.414 1.415L30-11.343l-8.485 8.485-1.414-1.414L30-14.456v-2.83L18.186-5.8l1.414 1.413L30-14.457l10.8 10.8 1.414-1.415L30-17.286v-2.83L43.728-6.688l1.414-1.414L30-23.116l-15.142 15.142-1.414-1.414L30-26.346'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
}

/* Add a subtle gold border at the top */
footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(212, 175, 55, 0.1), 
        rgba(212, 175, 55, 0.4), 
        rgba(184, 134, 11, 0.6), 
        rgba(212, 175, 55, 0.4), 
        rgba(212, 175, 55, 0.1));
}

/* Location Section */
.location {
    padding: 6rem 0;
    background-color: var(--light-color);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-address, .location-hours, .location-contact {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.location-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    letter-spacing: 0.075em;
}

.location-info h3 i {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-right: 10px;
}

.location-info p {
    margin-bottom: 0.5rem;
    color: #666;
}

.location-info strong {
    font-weight: 600;
    color: var(--dark-color);
}

.location-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.location-contact p i {
    color: var(--accent-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.location-cta-button {
    background: var(--gold-gradient);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    margin-top: 1rem;
    transition: var(--transition);
    letter-spacing: 0.09em;
}

.location-cta-button i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.location-cta-button:hover {
    background: linear-gradient(135deg, #b8860b, #d4af37, #b8860b);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 450px;
}

.map-container iframe {
    height: 100%;
}

/* Remove the old map container from footer */
footer .map-container {
    display: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: 1;
    }

    .about-content {
        order: 2;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-info {
        order: 2;
    }

    .map-container {
        order: 1;
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--light-color);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition);
    }

    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .hero-content {
        padding-left: 5%;
        padding-right: 5%;
        padding-top: 80px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-links.active {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero h1::after {
        width: 70px;
    }

    .product-cards, .categories-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .location-info {
        gap: 1.5rem;
    }

    .map-container {
        min-height: 300px;
    }

    .hero-content {
        padding-top: 100px;
    }
}

/* Gold accent for footer */
.footer-links h4::after, .footer-contact h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold-gradient);
}

.footer-cta-button {
    background: var(--gold-gradient);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
    letter-spacing: 0.09em;
}

.footer-cta-button:hover {
    background: linear-gradient(135deg, #b8860b, #d4af37, #b8860b);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

.footer-cta-button i {
    margin-right: 8px;
    font-size: 1.2rem;
    color: white;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

/* Fancy hover effect for about section */
.about-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.124), rgba(184, 135, 11, 0.098)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

/* Fancy gold separator */
.gold-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.gold-separator .line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-medium), transparent);
}

.gold-separator .symbol {
    margin: 0 15px;
    color: var(--gold-medium);
    font-size: 1.2rem;
}

/* Add a subtle pattern to emphasize elegance */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4af37' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: -1;
    pointer-events: none;
}

/* Updated styles for 1:1 scale images */

/* Category card images (if you decide to use them) */
.category-card-image {
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* If the logo text is inside a span that might inherit opacity */
.logo * {
    opacity: 1 !important;
}

/* Ensure logos display properly */
.logo img.loaded {
    opacity: 1 !important;
    display: block !important;
}

.navbar-logo, .footer-logo {
    height: 45px !important;
    width: auto !important;
    display: block !important;
    opacity: 1 !important;
}
