:root {
    --primary-color: #C79900; /* Accessible Gold */
    --secondary-color: #590059; /* Logo Purple */
    --text-color: #333;
    --light-bg: #fdfbfd;
    --white: #fff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --font-mm: 'Padauk', sans-serif;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
}

.mm-text {
    font-family: var(--font-mm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s;
}

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

.btn-primary:hover {
    background-color: #dcb300;
}

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

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Header */
.main-header {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    background-color: var(--white);
}

.main-header .container {
    display: flex;
    justify-content: center; /* Center the logo since menu is gone */
    align-items: center;
}

.logo-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

/* Hero Section */
.hero {
    background-color: var(--secondary-color);
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px; /* Add padding for small screens */
}

.hero h2 {
    font-size: 3rem;
    color: var(--white);
    margin: 10px 0;
}

.hero .subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

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

/* Features */
.features {
    padding: 60px 0;
    background-color: var(--white);
}

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

.feature-box {
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    transition: transform 0.3s;
    border-radius: 8px;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.feature-box i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--white);
}

.testimonials .section-header {
    margin-bottom: 60px;
}

.center {
    text-align: center;
}

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

.testimonial-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
}

.testimonial-card .content {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card .author h4 {
    color: var(--primary-color);
    font-family: var(--font-body);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: #eee;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center; /* Center align on mobile if wrapped */
    margin-bottom: 40px;
    text-align: center; /* Default center for smaller screens */
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

@media (min-width: 769px) {
    .footer-content {
        justify-content: space-between;
        text-align: left;
    }
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .main-header {
        padding: 15px 0;
    }

    .logo-avatar {
        width: 100px;
        height: 100px;
    }

    .hero {
        height: 400px;
    }

    .hero h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero .mm-text {
        font-size: 1rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .features, .testimonials {
        padding: 40px 0;
    }

    .footer-content {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .grid-4, .testimonial-grid {
        grid-template-columns: 1fr;
    }
}
