/* Modern CSS for Athena Holistic Health Website */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #b87860;
    --secondary-color: #c99080;
    --accent-color: #ddb3a5;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #faf8f7;
    --bg-white: #ffffff;
    --border-color: #e8d5cf;
    --link-color: #b87860;
    --link-hover: #8d5845;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* Header */
header {
    background-color: var(--bg-white);
    border-bottom: 2px solid var(--border-color);
    padding: 20px 0;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.site-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.tagline {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.language-link {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Navigation */
nav {
    background-color: var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
    font-size: 0.95rem;
}

nav ul li a:hover,
nav ul li a.active {
    background-color: var(--secondary-color);
}

/* Main Content */
main {
    padding: 40px 0;
    min-height: calc(100vh - 400px);
}

.content-section {
    background-color: var(--bg-white);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Typography */
h1 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 10px;
}

h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    line-height: 1.7;
}

a {
    color: var(--link-color);
    text-decoration: none;
}

a:hover {
    color: var(--link-hover);
    text-decoration: underline;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.profile-image {
    float: right;
    margin: 0 0 20px 20px;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.icon-image {
    max-width: 80px;
    margin: 10px;
}

/* Lists */
ul, ol {
    margin-left: 30px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 8px;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.button:hover {
    background-color: var(--secondary-color);
    text-decoration: none;
}

.button-secondary {
    background-color: var(--secondary-color);
}

.button-secondary:hover {
    background-color: var(--primary-color);
}

/* Forms */
form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--text-dark);
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(44, 95, 124, 0.2);
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.card {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.card h3 {
    margin-top: 0;
}

/* Info Box */
.info-box {
    background-color: var(--bg-light);
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    margin: 20px 0;
    border-radius: 4px;
}

.highlight-box {
    background-color: #fef0ed;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.social-links a {
    display: inline-block;
    padding: 10px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    text-decoration: none;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 30px 0;
    margin-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.footer-section h3 {
    color: white;
    margin-top: 0;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
}

/* Contact Info */
.contact-info {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info strong {
    color: var(--primary-color);
}

/* Map Container */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    margin: 20px 0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        padding: 10px;
    }

    .site-title {
        font-size: 1.5rem;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li a {
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 12px 15px;
    }

    .content-section {
        padding: 20px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .profile-image {
        float: none;
        display: block;
        margin: 0 auto 20px;
        max-width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .site-title {
        font-size: 1.3rem;
    }

    nav ul li a {
        padding: 10px;
        font-size: 0.9rem;
    }

    .content-section {
        padding: 15px;
    }

    h1 {
        font-size: 1.3rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

/* Print Styles */
@media print {
    nav, footer, .social-links {
        display: none;
    }
    
    body {
        font-size: 12pt;
    }
    
    a {
        text-decoration: underline;
        color: black;
    }
}
