/* Fisio Carlos Carmona - Custom Styles */

/* Variables for reference, though we use Tailwind config primarily */
:root {
    --color-primary: #114D8E;
    --color-secondary: #82ABC1;
    --color-accent: #276198;
    --color-dark: #2A222A;
    --color-darker: #150D14;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-dark);
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Custom Utilities if needed */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Map Responsive Container */
.map-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
