/* Custom Styles for Carol's Gym */

/* Color scheme - warm earthy tones for neighborhood gym feel */
:root {
    --primary-color: #8B6F47; /* Warm brown */
    --secondary-color: #C19A6B; /* Tan/camel */
    --accent-color: #556B2F; /* Olive green */
    --text-dark: #2C2416;
    --bg-light: #F5F1E8;
}

body {
    font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
    color: var(--text-dark);
}

/* Override Semantic UI primary button color */
.ui.primary.button {
    background-color: var(--primary-color);
}

.ui.primary.button:hover {
    background-color: #6D5638;
}

/* Hero section */
.masthead {
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(44, 36, 22, 0.7), rgba(44, 36, 22, 0.7)), url('../images/gym-interior-hero.jpg');
    background-size: cover;
    background-position: center;
    min-height: 600px;
    padding: 0;
}

.hero-content {
    padding: 2em 0 4em;
}

.hero-content h1 {
    font-size: 3.5em;
    font-weight: normal;
    margin-bottom: 0.5em;
}

.hero-content h2 {
    font-size: 1.7em;
    font-weight: normal;
    margin-bottom: 1.5em;
    color: var(--bg-light);
}

/* Navigation */
.ui.inverted.menu {
    background: var(--accent-color);
}

.ui.inverted.menu .item {
    color: white !important;
}

.ui.inverted.menu .active.item,
.ui.inverted.menu .item:hover {
    background: var(--primary-color);
}

/* Content sections */
.ui.vertical.stripe.segment {
    padding: 4em 0;
}

.large-text {
    font-size: 1.2em;
    margin-bottom: 1.5em;
}

/* Segments */
.ui.segment {
    border-color: var(--secondary-color);
}

.ui.segment h3 {
    color: var(--primary-color);
    margin-bottom: 0.5em;
}

/* Images */
.ui.rounded.image {
    border-radius: 8px;
}

/* Lists */
.ui.list .item i.icon {
    color: var(--accent-color);
}

/* Links */
a {
    color: var(--accent-color);
}

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

/* Footer */
.ui.inverted.footer.segment {
    background-color: var(--text-dark);
    padding: 3em 0;
}

.ui.inverted.header {
    color: var(--secondary-color);
}

/* Hero images */
.hero-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin: 2em 0;
}

/* Content images */
.content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5em 0;
}

/* Mobile responsiveness */
@media only screen and (max-width: 767px) {
    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content h2 {
        font-size: 1.2em;
    }

    .masthead {
        min-height: 400px;
    }

    .ui.secondary.inverted.pointing.menu {
        display: none;
    }
}

/* Print styles */
@media print {
    .ui.menu,
    .ui.footer.segment {
        display: none;
    }
}
