@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --primary-color: #cba052; /* Gold/Bronze */
    --primary-hover: #b38942;
    --text-dark: #1a1a1a;
    --text-light: #555555;
    --bg-light: #faf9f6; /* Cream */
    --bg-white: #ffffff;
    --border-color: #e0dcd3;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
}

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

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.top-bar {
    background-color: #f1f2f4;
    color: #4a5568;
    padding: 6px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid #e2e8f0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact a {
    color: #4a5568;
    font-weight: 600;
    margin-left: 5px;
}

.top-bar-contact i {
    color: var(--primary-color);
}

.top-bar-social a {
    color: #4a5568;
    margin-left: 10px;
    padding-left: 10px;
    font-size: 1.1rem;
    border-left: 1px solid #ccc;
}

.top-bar-social a:first-child {
    border-left: none;
}

.top-bar-social a:hover {
    color: var(--primary-color);
}

.main-header {
    background-color: var(--bg-white);
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary-color);
}

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

.nav-links-inner {
    display: flex;
    gap: 40px;
}

.mobile-menu-btn {
    display: none;
    font-size: 28px;
    color: var(--primary-color);
    cursor: pointer;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    position: relative;
}

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

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 10px 24px;
    border-radius: 3px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 80vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--bg-white);
    max-width: 600px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Section Shared */
.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

/* Features / Services */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-white);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Catalog Preview */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.catalog-item {
    position: relative;
    overflow: hidden;
    background: var(--bg-white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.catalog-img-wrapper {
    height: 350px;
    overflow: hidden;
}

.catalog-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.catalog-item:hover img {
    transform: scale(1.05);
}

.catalog-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    transform: translateY(calc(100% - 65px));
}

.catalog-item:hover .catalog-info {
    transform: translateY(0);
}

.catalog-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-family: var(--font-heading);
    color: var(--text-dark);
}

.catalog-info span {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Footer */
.main-footer {
    background-color: var(--text-dark);
    color: #aaaaaa;
    padding: 60px 0 20px;
}

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

.footer-col h4 {
    color: var(--bg-white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo {
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: block;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.9rem;
}
/* Mobile specific helpers */
.mobile-menu-header { display: none; }
.mobile-menu-overlay { display: none; }
.mobile-only { display: none; }
.desktop-only { display: inline-block; }

/* Media Queries */
@media (max-width: 992px) {
    .nav-links {
        gap: 15px;
    }
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .top-bar-contact {
        margin-bottom: 10px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .main-footer .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: left;
    }
    .mobile-menu-btn {
        display: block;
    }
    .mobile-only {
        display: inline-block;
    }
    .desktop-only {
        display: none !important;
    }
    /* Overlay for Mobile Menu */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: 1040;
    }
    .mobile-menu-overlay.show-overlay {
        display: block;
    }

    /* Mobile Menu Container */
    .nav-links {
        position: fixed;
        top: 0;
        right: -320px; /* Start hidden off-screen */
        width: 320px;
        height: 100vh;
        background: white;
        flex-direction: column;
        z-index: 1050;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        display: flex;
        overflow-y: auto;
    }
    .nav-links.show-menu {
        right: 0;
    }

    /* Mobile Menu Header (Logo + Close Button) */
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        border-bottom: 1px solid #eee;
    }
    .mobile-menu-header .logo {
        font-size: 1.5rem;
    }
    .mobile-menu-close {
        font-size: 1.5rem;
        color: var(--text-dark);
        cursor: pointer;
    }

    /* Mobile Menu Links Layout */
    .nav-links-inner {
        display: flex;
        flex-direction: column;
        padding: 0 0 20px 0;
    }
    .nav-links-inner a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 25px;
        color: var(--text-dark);
        font-size: 1.1rem;
        font-weight: 500;
        border-bottom: 1px solid #f5f5f5;
        transition: background-color 0.2s;
    }
    .nav-links-inner a:hover, .nav-links-inner a.active {
        background-color: #fcfcfc;
        color: var(--primary-color);
    }
    .nav-links-inner a i.mobile-only {
        font-size: 0.9rem;
        color: #ccc;
    }
    .nav-links-inner a:hover i.mobile-only, .nav-links-inner a.active i.mobile-only {
        color: var(--primary-color);
    }
    .blog-layout {
        grid-template-columns: 1fr !important;
    }
    .top-bar {
        display: none;
    }
}

/* Blog Specific Styles */
.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.search-form {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.search-form input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    outline: none;
    font-size: 0.95rem;
}

.search-form button {
    background: transparent;
    border: none;
    padding: 0 15px;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 1.1rem;
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}


.recent-post-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 15px;
    gap: 15px;
}

.recent-post-item:last-child {
    margin-bottom: 0;
}

.recent-post-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.recent-post-info {
    flex: 1;
}

.recent-post-date {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.recent-post-title {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.4;
    transition: var(--transition);
}

.recent-post-item:hover .recent-post-title {
    color: var(--primary-color);
}

.share-section {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.share-title {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f5f5f5;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.share-buttons a:hover {
    background: var(--primary-color);
    color: white;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 90px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: var(--transition);
}
.floating-whatsapp:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: white;
}

/* Scroll to Top */
#scrollToTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 35px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: transparent;
    border: 2px solid #a8885b;
    color: #a8885b;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 3px;
    font-size: 18px;
    transition: var(--transition);
}
#scrollToTopBtn:hover {
    background-color: #a8885b;
    color: white;
}

/* Contact Hover Cards */
.contact-card {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px 0;
    background-color: transparent;
}
.contact-card .contact-icon {
    width: 60px;
    height: 60px;
    background-color: #40342a; 
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 20px;
    transition: var(--transition);
}
.contact-card:hover .contact-icon {
    background-color: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}
.contact-card .contact-text p {
    margin: 0;
}
.contact-card .contact-title {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.contact-card .contact-detail {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

/* Stats Section (Image 5 Style) */
.stats-section {
    background-color: #e8e2d8; 
    padding: 60px 0;
}
.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
}
.stat-item {
    margin: 20px;
}
.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
    line-height: 1;
}
.stat-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #40342a;
    margin-top: 10px;
}
.stat-desc {
    font-size: 0.9rem;
    color: #7c7268;
}

/* About Us Section (Image 4 Style) */
.about-new-section {
    background-color: #f7f5f0;
    padding: 80px 0;
}
.about-new-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
@media (max-width: 768px) {
    .about-new-grid {
        grid-template-columns: 1fr;
    }
}
.about-text-content h2 {
    font-size: 3rem;
    font-family: var(--font-heading);
    color: #2b2521;
    margin-bottom: 20px;
    line-height: 1.1;
}
.about-text-content h2 span {
    color: #a8885b; 
    font-style: italic;
    font-weight: 400;
}
.about-text-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}
.about-image-collage {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.about-img-left {
    height: 100%;
}
.about-img-left img, .about-img-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-img-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.about-img-right .top-img {
    height: 250px;
}
.about-experience-box {
    background-color: #2b2521;
    color: var(--primary-color);
    padding: 30px;
    text-align: center;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.about-experience-box h4 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0;
    font-family: var(--font-heading);
}
.about-experience-box span {
    color: #e0dcd3;
    font-size: 0.9rem;
}

/* Reviews Section */
.reviews-section {
    background-color: #ffffff;
    padding: 80px 0;
}
.review-card {
    background: #faf9f6;
    padding: 30px;
    border-radius: 5px;
    border: 1px solid #e0dcd3;
    margin-bottom: 20px;
    text-align: left;
}
.review-stars {
    color: #f39c12;
    margin-bottom: 10px;
}
.review-text {
    font-style: italic;
    margin-bottom: 15px;
}
.review-author {
    font-weight: bold;
    color: var(--primary-color);
}
