/*
Theme Name: Mammoth Mix
Theme URI: https://mammothmix.com
Author: Mikko J. Holappa
Author URI: https://mammothmix.com
Description: A lightweight custom theme for my music business.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: mammothmix
*/

/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Hero Section */
.hero {
    text-align: center;
    background: #f8f9fa;
    padding: 50px 20px;
}
.hero h1 {
    font-size: 3em;
}
.hero .cta-button {
    background: #ff007a;
    color: #fff;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

/* Services Section */
.services {
    padding: 50px 20px;
    text-align: center;
}
.service-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.service {
    background: #fff;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    flex: 1;
    max-width: 400px;
}

/* Pricing Section */
.pricing {
    text-align: center;
    padding: 50px 20px;
    background: #f8f9fa;
}
.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.price-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    max-width: 250px;
    text-align: center;
}
.price {
    display: block;
    font-size: 1.5em;
    font-weight: bold;
    margin: 10px 0;
}
.select-button {
    background: #007bff;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
}

/* CTA Section */
.cta {
    background: #007bff;
    color: white;
    text-align: center;
    padding: 50px 20px;
}
.cta-button {
    background: white;
    color: #007bff;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}
