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

/* Body and Typography */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f4f7f9;
    margin: 0;
    color: #333;
}

h1, .title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
}

h2, .subtitle {
    font-family: 'Libre Baskerville', serif;
    font-size: 36px;
    font-weight: 400;
}

h3, .heading {
    font-family: 'Lora', serif;
    font-size: 32px;
    font-weight: 600;
}

.subheader {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 500;
}

.section-header {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #FF004D;
}

p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

/* Blockquote */
blockquote, .quote {
    font-family: 'Merriweather', serif;
    font-size: 16px;
    font-style: italic;
    border-left: 4px solid #FF7143; /* Bright Orange */
    padding-left: 10px;
    margin: 20px 0;
}

/* Navbar */
.navbar {
    background-color: #0F3057; /* Dark Navy Blue */
}

.navbar-brand, .nav-link {
    color: #fff !important;
}

/* Hero Section with Overlay */
.hero-section {
    background: linear-gradient(135deg, rgba(15, 48, 87, 0.8), rgba(58, 175, 169, 0.8)), url('../images/hero.webp') center/cover no-repeat;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.hero-section h1, .hero-section p {
    color: #fff; /* Ensure high contrast text */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Text shadow for readability */
}

/* Hero Section for The Nature of Magic Landing Page */
.hero-natureofmagic {
    background: linear-gradient(135deg, rgba(58, 175, 169, 0.8), rgba(255, 113, 67, 0.8)), url('./natureofmagic/images/nomhero.webp') center/cover no-repeat;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.hero-natureofmagic h1, .hero-natureofmagic p {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Responsive adjustments for the hero sections */
@media (max-width: 768px) {
    .hero-section, .hero-natureofmagic {
        padding: 60px 20px; /* Added more padding for smaller screens */
        height: 70vh; /* Increased height for better spacing */
    }
    .hero-section h1, .hero-natureofmagic h1 {
        font-size: 2.5rem; /* Slightly larger font size on mobile */
    }
    .hero-section p, .hero-natureofmagic p {
        font-size: 1.4rem; /* Adjust text for readability */
    }
}

/* Button Styles */
.btn-cta {
    background-color: #FF7143; /* Bright Orange */
    border-color: #FF7143;
    color: #fff;
}
.btn-cta:hover {
    background-color: #FFD966; /* Warm Gold */
    border-color: #FFD966;
}

/* General Button Styles */
.btn-primary {
    background-color: #FF7143; /* Bright Orange */
    border: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #FFD966; /* Warm Gold */
    transform: translateY(-2px);
}

/* Service Card */
.service-card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* CTA Section */
.cta {
    background-color: #3AAFA9; /* Tealish Green */
    color: #fff;
    padding: 80px 20px;
}

@media (max-width: 768px) {
    .cta {
        padding: 60px 20px; /* Added extra padding for mobile screens */
    }
}

/* Footer */
.footer {
    background-color: #A84A1E; /* Burnt Orange */
    padding: 30px 0; /* Increased padding for better spacing */
}

.footer-links a {
    color: #fff;
    margin: 0 10px;
}
