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

body {
    font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: normal;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Colors */
:root {
    --teal: #1fb59e;
    --dark-gray: #4a4a4a;
    --light-gray: #f4f4f4;
    --footer-bg: #2d2d2d;
}

/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.top-bar .location {
    flex: 1;
}

.top-bar .location strong {
    display: block;
    color: #555;
    font-size: 0.9em;
}

.top-bar .location span {
    color: var(--teal);
    font-size: 0.9em;
}

.top-bar .logo {
    flex: 1;
    text-align: center;
}

.top-bar .logo img {
    max-height: 60px;
}

.top-bar .contact-info {
    flex: 1;
    text-align: right;
    font-size: 0.9em;
    color: #555;
}

.top-bar .contact-info strong {
    display: block;
    font-size: 1.2em;
    color: #333;
}

/* Navigation */
.main-nav {
    background-color: var(--dark-gray);
    padding: 15px 0;
    text-align: center;
}

.main-nav ul {
    list-style: none;
    display: inline-flex;
    gap: 40px;
}

.main-nav ul li a {
    color: #fff;
    font-size: 0.85em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('imgs/hero_bg.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 12px 30px;
    font-size: 0.9em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #333;
}

.btn-solid {
    background: #fff;
    border: 2px solid #fff;
    color: #333;
}

.btn-solid:hover {
    background: #f0f0f0;
}

/* Quote Section */
.quote-section {
    background-color: var(--light-gray);
    text-align: center;
    padding: 60px 20px;
}

.quote-section h2 {
    font-size: 2em;
    color: #666;
}

.quote-section h2 strong {
    color: #333;
}

/* Main Content */
.main-content {
    display: flex;
    gap: 60px;
    padding: 80px 0;
}

.about-col {
    flex: 2;
}

.about-col h2 {
    font-size: 2.2em;
    margin-bottom: 30px;
    color: #444;
}

.about-text-img {
    display: flex;
    gap: 30px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 0.95em;
    color: #555;
}

.about-text .read-more {
    color: var(--teal);
    font-weight: bold;
    font-size: 0.9em;
}

.about-img {
    flex-shrink: 0;
    width: 300px;
}

.about-img img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    padding: 5px;
    background: #fff;
}

.contact-col {
    flex: 1;
}

.contact-col h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1em;
    font-weight: 800;
    margin-bottom: 20px;
    color: #555;
    text-transform: uppercase;
}

.contact-col h3 span {
    color: var(--teal);
}

.contact-form .form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form .form-group > div {
    flex: 1;
}

.contact-form label {
    display: block;
    font-size: 0.85em;
    color: #666;
    margin-bottom: 5px;
}

.contact-form label span {
    color: red;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    font-family: inherit;
}

.contact-form textarea {
    height: 100px;
    resize: vertical;
}

.btn-submit {
    background-color: var(--dark-gray);
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 0.9em;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #333;
}

/* Footer Banner */
.footer-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('imgs/footer_bg.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.footer-banner h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.footer-banner h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

/* Footer Bottom */
.footer-bottom {
    background-color: var(--footer-bg);
    color: #aaa;
    text-align: center;
    padding: 20px 0;
    font-size: 0.85em;
}

.footer-bottom a {
    color: #aaa;
}

.footer-bottom a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .main-content {
        flex-direction: column;
    }
    
    .about-text-img {
        flex-direction: column;
    }
    
    .about-img {
        width: 100%;
    }
    
    .top-bar {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .top-bar .contact-info {
        text-align: center;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}
