/* CSS Variables - Dark Theme with Gold Accents */
:root {
    --primary-color: #ac9928;
    --secondary-color: #ac9928;
    --accent-color: #9b8a2f;
    --text-dark: #E8E8E8;
    --text-light: #B0B0B0;
    --bg-dark: #0F0F0F;
    --bg-darker: #1A1A1A;
    --bg-card: #cecece;
    --border-color: #ac9928;
    --font-main: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-dark);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { 
    font-size: 2.5rem;
    color: #9b8a2f;
}
h2 { 
    font-size: 2rem;
    color: #9b8a2f;
}
h3 { 
    font-size: 1.5rem; 
    color: #9b8a2f;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

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

/* Header Styles */
.site-header {
    background: var(--bg-darker);
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
}

.site-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.site-tagline {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 300;
}

/* Navigation */
.main-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item a {
    font-weight: 500;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.nav-item a:hover,
.nav-item a.active {
    color: var(--accent-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1A1A1A, #2D2D2D);
    color: white;
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
}

.hero-title {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 3rem;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.hero-description {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* Values Section */
.values {
    padding: 4rem 0;
    background: var(--bg-darker);
}

.section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-color);
}

.value-card h3 {
    color: #ac9928;
    margin-bottom: 1rem;
}
.value-card p {
    color: #ac9928;
    font-size: 1rem;
}

/* About Preview */
.about-preview {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    /*background: linear-gradient(135deg, var(--bg-darker), #2D2D2D);*/
    background: white;
    text-align: center;
    color: white;
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.cta h2 {
    color: #9b8a2f;
    margin-bottom: 1rem;
}
.cta h3 {
    color: #9b8a2f;
    margin-bottom: 1rem;
}

.cta p {
    color: #9b8a2f;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Footer */
.site-footer {
    background: var(--bg-darker);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 2px solid var(--border-color);
}

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

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
    color: var(--text-light);
}

.contact-list,
.footer-nav {
    list-style: none;
}

.contact-list li,
.footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-light);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
}

/* Page Styles */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 3rem 0;
    background: var(--bg-dark);
}

.page-header {
    text-align: center;
    padding: 2rem 0;
    background: var(--bg-darker);
    margin-bottom: 3rem;
    border-bottom: 2px solid var(--border-color);
}

.page-header h1 {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-darker);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.5);
        border-top: 1px solid var(--border-color);
    }
    
    .main-nav.active .nav-list {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
}
/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 3rem auto;
    padding: 2.5rem;
    background: var(--bg-darker);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: #0A0A0A;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-dark);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input[type="text"]::placeholder,
.contact-form input[type="email"]::placeholder,
.contact-form textarea::placeholder {
    color: #ac9928;
    font-family: var(--font-main);
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #111;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button[type="submit"] {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--bg-dark);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.contact-form button[type="submit"]:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.contact-form button[type="submit"]:active {
    transform: translateY(0);
}

/* Optional: Add labels if you want them */
.contact-form label {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: -0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form {
        padding: 2rem;
        margin: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-form button[type="submit"] {
        padding: 0.875rem 1.5rem;
    }
}
.hero-image {
    display: block;
    margin: 0 auto;  /* Centers the image */
    max-width: 300px;  /* Adjust this value to make it bigger/smaller */
    height: auto;  /* Maintains aspect ratio */
}

/* Optional: make it responsive on mobile */
@media (max-width: 768px) {
    .hero-image {
        max-width: 200px;  /* Smaller on mobile */
    }
}