/* Beach Cities Medicine - Master Styles for Static Site */
/* This file combines all essential WordPress/Divi theme styles */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic|GFS+Didot:regular|Raleway:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic|Manrope:200,300,regular,500,600,700,800&subset=latin,latin-ext&display=swap');

/* WordPress Block Library Styles */
/* This file contains: wordpress-blocks.css */

/* Divi Theme Main Styles */
/* This file contains: divi-style-static.css (824KB) */

/* Child Theme Customizations */
/* This file contains: child-theme.css */

/* Plugin Styles */
/* This file contains: gravity-forms-main.css, supreme-modules.css, divi-machine.css */

/* Critical inline styles from original site */
body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #424242;
}

/* Header styles to match original */
#top-header {
    background: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

#et-info {
    text-align: right;
}

#et-info-phone {
    font-weight: bold;
    color: #2c98f7;
    margin-right: 20px;
}

/* Navigation styles */
.et_pb_nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Hero section */
.et_pb_slide_title {
    font-size: 3rem;
    font-weight: 600;
    color: #424242;
    margin-bottom: 20px;
}

.et_pb_slide_description {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 30px;
}

/* Button styles */
.et_pb_button {
    background: #2c98f7;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.et_pb_button:hover {
    background: #1976d2;
    transform: translateY(-2px);
}

/* Section spacing */
.et_pb_section {
    padding: 60px 0;
}

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

/* Column layouts */
.et_pb_column_1_2 {
    width: 48%;
    float: left;
    margin-right: 4%;
}

.et_pb_column_1_2:last-child {
    margin-right: 0;
}

.et_pb_column_1_3 {
    width: 31.33%;
    float: left;
    margin-right: 3%;
}

.et_pb_column_1_3:last-child {
    margin-right: 0;
}

.et_pb_column_4_4 {
    width: 100%;
}

/* Clear floats */
.et_pb_row:after {
    content: "";
    display: table;
    clear: both;
}

/* Text content */
.et_pb_text_inner h2 {
    font-size: 2.5rem;
    color: #424242;
    margin-bottom: 20px;
    font-weight: 600;
}

.et_pb_text_inner h3 {
    font-size: 1.8rem;
    color: #2c98f7;
    margin-bottom: 15px;
    font-weight: 600;
}

.et_pb_text_inner p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Service flipboxes */
.dsm_flipbox {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.dsm_flipbox:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.dsm_flipbox h4 {
    font-size: 1.4rem;
    color: #424242;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Responsive design */
@media (max-width: 768px) {
    .et_pb_column_1_2,
    .et_pb_column_1_3 {
        width: 100%;
        float: none;
        margin-right: 0;
        margin-bottom: 30px;
    }
    
    .et_pb_slide_title {
        font-size: 2rem;
    }
    
    .et_pb_slide_description {
        font-size: 1.2rem;
    }
    
    .et_pb_text_inner h2 {
        font-size: 2rem;
    }
}