/* AMC Multi-Page Website Styles */
:root {
    --primary: #2d5a1e;
    --primary-dark: #1e3d14;
    --primary-light: #4a7c35;
    --accent: #7cb342;
    --accent-light: #aed581;
    --gold: #c9a227;
    --dark: #1a1a1a;
    --text: #333333;
    --text-light: #666666;
    --bg: #f8faf6;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }

/* Navigation */
nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05); transition: var(--transition);
}
nav.scrolled { box-shadow: var(--shadow); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; height: 72px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img { height: 48px; width: auto; border-radius: 50%; }
.logo-text { font-weight: 700; font-size: 1.15rem; color: var(--primary); letter-spacing: 0.5px; line-height: 1.2; }
.logo-text span { display: block; font-size: 0.62rem; font-weight: 500; color: var(--text-light); letter-spacing: 1.5px; text-transform: uppercase; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 500; font-size: 0.88rem; transition: var(--transition); position: relative; padding: 4px 0; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary); transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.mobile-menu { display: none; font-size: 1.5rem; color: var(--primary); cursor: pointer; }

/* Buttons */
.btn {
    padding: 12px 28px; border-radius: 8px; font-weight: 600; font-size: 0.9rem;
    text-decoration: none; transition: var(--transition); cursor: pointer; border: none;
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--accent-light); }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: #b8941f; transform: translateY(-2px); }

/* Section Headers */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.2rem; color: var(--primary-dark); margin-bottom: 12px; font-weight: 700; }
.section-header p { color: var(--text-light); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.section-header .line { width: 60px; height: 4px; background: var(--accent); margin: 15px auto 0; border-radius: 2px; }

/* Cards */
.card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img { width: 100%; height: 220px; object-fit: cover; display: block; }
.card-body { padding: 24px; }
.card-body h3 { font-size: 1.15rem; color: var(--primary-dark); margin-bottom: 10px; }
.card-body p { color: var(--text-light); font-size: 0.88rem; line-height: 1.6; }
.card-body .tag { display: inline-block; background: var(--bg); color: var(--primary); padding: 4px 12px; border-radius: 20px; font-size: 0.7rem; font-weight: 600; margin-top: 12px; text-transform: uppercase; letter-spacing: 0.5px; }

/* Footer */
footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 60px 24px 30px; }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.footer-brand .footer-logo img { height: 42px; border-radius: 50%; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--accent-light); }
.footer-bottom { max-width: 1200px; margin: 40px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* Responsive */
@media (max-width: 1024px) {
    .footer-container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px; box-shadow: var(--shadow-lg); gap: 16px; }
    .nav-links.active { display: flex; }
    .mobile-menu { display: block; }
    .section-header h2 { font-size: 1.7rem; }
    .footer-container { grid-template-columns: 1fr; gap: 30px; }
}
