/* Import fonts: Montserrat for headings, Lato for body text */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&family=Lato:wght@400;700&display=swap');

/* Color Palette Variables (Based on your Flare Logo) */
:root {
    --flare-orange-red: #FF4E00; /* Main accent color */
    --flare-gold: #FFD700;       /* Secondary accent */
    --flare-dark-bg: #1A1A1A;    /* Very dark charcoal background */
    --flare-medium-dark: #2A2A2A; /* Slightly lighter charcoal for sections */
    --flare-light-text: #F0F0F0; /* Main body text color */
    --flare-lighter-text: #CCCCCC; /* Subtler text */
    --flare-border-light: #444444; /* Light border for elements */
}

/* Base Styles */
body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    line-height: 1.7;
    color: var(--flare-light-text);
    background-color: var(--flare-dark-bg);
    scroll-behavior: smooth;
}

/* Headings */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--flare-light-text);
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 2.8em;
    text-align: center;
    letter-spacing: 1px;
}

h2 {
    font-size: 2.5em;
    color: var(--flare-orange-red); /* Main accent for section titles */
    text-align: center;
    margin-bottom: 1.5em;
    position: relative;
}

h2::after { /* Underline accent */
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--flare-orange-red), var(--flare-gold)); /* Gradient underline */
    margin: 15px auto 0;
    border-radius: 2px;
}

h3 {
    font-size: 1.8em;
    color: var(--flare-gold); /* Gold for sub-headings */
}

h4 {
    font-size: 1.3em;
    color: var(--flare-light-text);
}

/* Links */
a {
    color: var(--flare-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--flare-orange-red);
    text-decoration: underline;
}

/* General Section Styling */
.site-header, .site-main, .site-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.section-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
    background-color: var(--flare-medium-dark);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
}

/* Header */
.site-header {
    background-color: var(--flare-dark-bg);
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 2px solid var(--flare-orange-red); /* Accent border */
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    margin-right: 15px;
}

.logo h1 {
    font-size: 2em;
    margin: 0;
    color: var(--flare-orange-red);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.main-nav a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05em;
    color: var(--flare-light-text);
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.main-nav a:hover,
.main-nav a:focus {
    background-color: var(--flare-orange-red);
    color: var(--flare-dark-bg);
    text-decoration: none;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--flare-dark-bg), var(--flare-medium-dark));
    padding: 80px 20px;
    text-align: center;
    color: var(--flare-light-text);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
}

.hero-content h2 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--flare-gold); /* Gold for hero heading */
}

.hero-content p {
    font-size: 1.3em;
    margin-bottom: 40px;
    line-height: 1.5;
    color: var(--flare-lighter-text);
}

/* Buttons */
.button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 700;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    letter-spacing: 1px;
}

.primary-button {
    background-color: var(--flare-orange-red);
    color: var(--flare-dark-bg);
}

.primary-button:hover {
    background-color: var(--flare-gold);
    color: var(--flare-dark-bg);
    transform: translateY(-3px);
    text-decoration: none;
}

.secondary-button {
    background-color: transparent;
    color: var(--flare-gold);
    border: 2px solid var(--flare-gold);
}

.secondary-button:hover {
    background-color: var(--flare-gold);
    color: var(--flare-dark-bg);
    transform: translateY(-3px);
    text-decoration: none;
}

/* Info Section (Why Choose Us) */
.info-section {
    padding: 60px 20px;
    text-align: center;
}

.feature-grid, .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.feature-item, .service-item {
    background-color: var(--flare-medium-dark);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--flare-border-light);
}

.feature-item h4 {
    margin-top: 0;
    margin-bottom: 15px;
}

/* Services Page Specifics */
.service-item h3 {
    color: var(--flare-gold);
    margin-top: 0;
    margin-bottom: 15px;
}

.service-item ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.service-item ul li {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    color: var(--flare-lighter-text);
}

.service-item ul li:last-child {
    border-bottom: none;
}

/* Call to Action Section */
.cta-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #000000; /* Pure black for a strong contrast CTA */
    color: var(--flare-light-text);
}

.cta-section h3 {
    color: var(--flare-orange-red); /* Orange-red for CTA heading */
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Contact Details */
.contact-details p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.contact-details a {
    font-weight: bold;
    color: var(--flare-orange-red);
}

.instagram-embed {
    margin-top: 40px;
    padding: 30px;
    background-color: var(--flare-dark-bg);
    border-radius: 8px;
    border: 1px solid var(--flare-border-light);
}

.instagram-embed h3 {
    color: var(--flare-gold);
}


/* Footer */
.site-footer {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--flare-dark-bg);
    color: var(--flare-lighter-text);
    font-size: 0.9em;
    border-top: 2px solid var(--flare-orange-red);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }
    h2 {
        font-size: 2em;
    }
    .site-header {
        flex-direction: column;
    }
    .main-nav {
        margin-top: 20px;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    .logo {
        margin-bottom: 20px;
    }
    .hero-content h2 {
        font-size: 2.5em;
    }
    .hero-content p {
        font-size: 1em;
    }
    .section-content {
        padding: 40px 25px;
    }
    .feature-grid, .service-grid {
        grid-template-columns: 1fr;
    }
}
