/* --- Global Resets & Variables --- */
:root {
    --primary-color: #2A556C; /* Replaced orange with custom tone */
    --text-dark: #222222;
    --text-muted: #555555;
    --bg-light: #f9f9f9;
    --font-stack: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-stack);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #ffffff;
}

/* --- Header --- */
.site-header {
    background: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;  /* Stack items vertically */
    align-items: center;      /* Center the items horizontally */
    gap: 20px;                /* Give breathing room between the large logo and phone button */
}

.logo img {
    height: 165px;            /* Scaled 3x larger from the original 55px */
    width: auto;
    display: block;
    margin: 0 auto;           /* Secondary alignment insurance */
}

.phone-btn {
    background-color: #333333;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.3s ease;
}

.phone-btn:hover {
    background-color: var(--primary-color);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    background: url('../images/background.png') no-repeat center center/cover;
    height: 70vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    padding: 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.hero-subtext {
    font-size: 1.25rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 35px;
    font-weight: 600;
    border-radius: 30px;
    display: inline-block;
    transition: transform 0.2s ease, background 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* --- Info & Opening Hours Section --- */
.info-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.services-overview h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.section-desc {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.service-item {
    display: flex;
    gap: 15px;
}

.service-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 3px;
}

.service-text h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.service-text ul {
    list-style: none;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.service-text li {
    margin-bottom: 4px;
}

/* Hours Box Customizations */
.hours-box {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    height: fit-content;
}

.hours-box h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 10px;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.95rem;
}

.text-right {
    text-align: right;
    font-weight: 600;
}

/* --- Gallery & Values Section --- */
.gallery-text-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.gallery-text-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.text-blocks .block {
    margin-bottom: 35px;
}

.text-blocks h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.text-blocks p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.image-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

/* --- Contact Section --- */
.contact-section {
    padding: 80px 20px;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.contact-section p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-form {
    text-align: left;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    background-color: #fcfcfc;
    border-radius: 6px;
    font-family: var(--font-stack);
    font-size: 0.95rem;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.consent-container {
    margin: 25px 0;
    text-align: center;
}

.checkbox-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.btn-submit {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 45px;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* --- Footer --- */
.site-footer {
    background-color: #0b0c10;
    color: #ffffff;
    padding: 60px 20px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    border-bottom: 1px solid #222222;
    padding-bottom: 40px;
}

.footer-info h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    margin-top: 20px;
    color: #ffffff;
}

.footer-info h3:first-child {
    margin-top: 0;
}

.footer-info address {
    font-style: normal;
    color: #aaaaaa;
    line-height: 1.8;
}

.footer-info p {
    color: #aaaaaa;
    margin-bottom: 8px;
}

.footer-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-map iframe {
    border-radius: 6px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: #666666;
    font-size: 0.85rem;
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
    .info-container,
    .gallery-text-container,
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
    }
}

@media (max-width: 600px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .logo img {
        height: 110px;        /* Responsively scale down the large logo on compact screens */
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
}

/* --- Header Wrapper Adjustment --- */
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;  
    align-items: center;      
    gap: 0; /* Reduced to zero since the phone button is moved down */
}

/* --- Hero Phone Button Styles --- */
.hero-phone-btn {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px; /* Spaces out the red icon from the numbers */
}

/* Style the phone icon red to match your brand style rules */
.phone-icon-red {
    color: #cc2a2a; /* Clean solid red tint */
    filter: drop-shadow(0px 0px 1px rgba(0,0,0,0.2));
    display: inline-block;
}
