/* =========================================
   BASE STYLES & VARIABLES
   ========================================= */
:root {
    --primary-color: #d4af37; /* Gold color for a premium feel */
    --primary-hover: #b5952f;
    --dark-bg: #1a1a1a;
    --light-bg: #f9f9faf0;
    --text-dark: #222222;
    --text-light: #ffffff;
    --text-muted: #666666;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-weight: 600; line-height: 1.2; }

a { text-decoration: none; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.bg-light { background-color: var(--light-bg); }

.btn {
    display: inline-block; padding: 14px 32px; border-radius: 30px;
    font-weight: 600; font-size: 1.1rem; cursor: pointer;
    transition: var(--transition); border: none; text-align: center;
}

.btn-primary { background-color: var(--primary-color); color: var(--text-dark); }
.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    background-color: var(--text-dark);
    color: #fff;
}

/* NAVIGATION BAR */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.nav-container { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { font-size: 1.8rem; font-weight: 800; color: var(--text-dark); }
.logo span { color: var(--primary-color); font-weight: 400; }

.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links li a { font-weight: 600; color: var(--text-dark); position: relative; padding: 5px 0; transition: color 0.3s ease; }
.nav-links li a::after {
    content: ''; position: absolute; width: 0; height: 2px;
    bottom: 0; left: 0; background-color: var(--primary-color);
    transition: width 0.3s ease;
}
.nav-links li a:hover { color: var(--primary-color); }
.nav-links li a:hover::after { width: 100%; }

.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { width: 25px; height: 3px; background-color: var(--text-dark); transition: var(--transition); }

/* HERO SECTION */
.hero {
    height: 100vh; display: flex; align-items: center; justify-content: center;
    text-align: center; color: var(--text-light);
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://placehold.co/1920x1080/D4AF37/ffffff?text=Hero+Background+Image');
    background-size: cover; background-position: center; background-attachment: fixed;
    padding: 0 20px;
}

.hero-content { max-width: 800px; animation: fadeIn 1.5s ease; }
.hero-content h2 { font-size: 4rem; font-weight: 800; margin-bottom: 20px; letter-spacing: -1px; }
.hero-content p { font-size: 1.3rem; margin-bottom: 40px; font-weight: 300; }

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

/* SECTION TITLES */
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.5rem; margin-bottom: 15px; position: relative; display: inline-block; }
.section-title h2::after {
    content: ''; position: absolute; width: 50px; height: 3px;
    background-color: var(--primary-color); bottom: -10px; left: 50%; transform: translateX(-50%);
}
.section-title p { color: var(--text-muted); font-size: 1.1rem; }

/* ABOUT SECTION */
.about-content { text-align: center; max-width: 900px; margin: 0 auto; font-size: 1.2rem; color: var(--text-muted); }
.pt-4 { padding-top: 40px; }

/* CATEGORIES SECTION */
.category-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 40px; }
.filter-btn {
    padding: 10px 24px; background-color: #fff; border: 1px solid #ddd;
    border-radius: 30px; font-family: inherit; font-weight: 600;
    font-size: 1rem; cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background-color: var(--primary-color); color: var(--text-dark); border-color: var(--primary-color); }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }
.category-item { display: block; animation: scaleIn 0.5s ease; }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

.card { background: #fff; border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); height: 100%; }
.card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.card-img-wrapper { overflow: hidden; height: 220px; }
.card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-img { transform: scale(1.1); }
.card-body { padding: 24px; }
.card-body h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card-body p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 15px; }

.view-more {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
    transition: var(--transition);
}

.card:hover .view-more {
    letter-spacing: 1px;
}

.card-link {
    display: block;
    height: 100%;
    color: inherit;
}

/* CONTACT SECTION */
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; }
.info-card { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 30px; padding: 20px; background: var(--light-bg); border-radius: var(--border-radius); transition: var(--transition); }
.info-card:hover { transform: translateX(10px); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.info-card .icon { font-size: 1.5rem; padding: 12px; background: #fff; border-radius: 50%; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.info-card h4 { margin-bottom: 5px; font-size: 1.1rem; }
.info-card p { color: var(--text-muted); font-size: 0.95rem; }
.map-container { height: 100%; min-height: 400px; border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow); }

/* FOOTER */
.footer { background-color: var(--dark-bg); color: rgba(255, 255, 255, 0.7); text-align: center; padding: 30px 0; font-size: 0.9rem; }

/* RESPONSIVE */
@media (max-width: 992px) { .hero-content h2 { font-size: 3rem; } .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
    .nav-links {
        position: absolute; top: 80px; left: 0; width: 100%; background-color: #fff;
        flex-direction: column; align-items: center; gap: 0;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
        clip-path: circle(0% at 50% -20%); transition: clip-path 0.5s ease-out;
    }
    .nav-links.active { clip-path: circle(150% at 50% -20%); }
    .nav-links li { width: 100%; text-align: center; }
    .nav-links li a { display: block; padding: 20px; border-bottom: 1px solid #eee; }
    .hamburger { display: flex; }
    .hero-content h2 { font-size: 2.5rem; }
    .hero-content p { font-size: 1.1rem; }
}
