/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Neuton:wght@300;400;700&family=Open+Sans:wght@300;400;600;700&display=swap');

:root {
    --primary-color: rgb(66, 39, 114);
    /* Deep Purple derived from site */
    --accent-color: #D4AF37;
    /* Gold/Yellow */
    --text-color: #333333;
    --light-bg: #f5f5f5;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* 12-Column Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-s-1,
.col-s-2,
.col-s-3,
.col-s-4,
.col-s-5,
.col-s-6,
.col-s-7,
.col-s-8,
.col-s-9,
.col-s-10,
.col-s-11,
.col-s-12,
.col-m-1,
.col-m-2,
.col-m-3,
.col-m-4,
.col-m-5,
.col-m-6,
.col-m-7,
.col-m-8,
.col-m-9,
.col-m-10,
.col-m-11,
.col-m-12 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

/* Mobile first (default width 100% already set above) */
.col-1 {
    width: 8.33%;
}

.col-2 {
    width: 16.66%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33%;
}

.col-5 {
    width: 41.66%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.33%;
}

.col-8 {
    width: 66.66%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.33%;
}

.col-11 {
    width: 91.66%;
}

.col-12 {
    width: 100%;
}

/* Tablet (Small) Breakpoint */
@media only screen and (min-width: 600px) {
    .col-s-1 {
        width: 8.33%;
    }

    .col-s-2 {
        width: 16.66%;
    }

    .col-s-3 {
        width: 25%;
    }

    .col-s-4 {
        width: 33.33%;
    }

    .col-s-5 {
        width: 41.66%;
    }

    .col-s-6 {
        width: 50%;
    }

    .col-s-7 {
        width: 58.33%;
    }

    .col-s-8 {
        width: 66.66%;
    }

    .col-s-9 {
        width: 75%;
    }

    .col-s-10 {
        width: 83.33%;
    }

    .col-s-11 {
        width: 91.66%;
    }

    .col-s-12 {
        width: 100%;
    }
}

/* Desktop (Medium) Breakpoint */
@media only screen and (min-width: 768px) {
    .col-m-1 {
        width: 8.33%;
    }

    .col-m-2 {
        width: 16.66%;
    }

    .col-m-3 {
        width: 25%;
    }

    .col-m-4 {
        width: 33.33%;
    }

    .col-m-5 {
        width: 41.66%;
    }

    .col-m-6 {
        width: 50%;
    }

    .col-m-7 {
        width: 58.33%;
    }

    .col-m-8 {
        width: 66.66%;
    }

    .col-m-9 {
        width: 75%;
    }

    .col-m-10 {
        width: 83.33%;
    }

    .col-m-11 {
        width: 91.66%;
    }

    .col-m-12 {
        width: 100%;
    }
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-bg);
}

h1,
h2,
h3 {
    font-family: 'Neuton', serif;
    font-weight: 700;
}

/* Header */
/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: var(--accent-color);
}

.top-bar-left,
.top-bar-center,
.top-bar-right {
    display: flex;
    align-items: center;
}

.top-bar-right i {
    margin-right: 5px;
    color: var(--accent-color);
}

/* Header */
header {
    background-color: var(--white);
    padding: 2.5rem 0;
    /* Increased padding */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centered items */
    width: fit-content;
    margin: 0 auto;

    /* Center the section */
}

.header-logo {
    height: auto;
    max-width: 300px;
    /* Adjust as needed */
    display: block;
}

.header-divider {
    width: 100%;
    height: 1px;
    background-color: var(--primary-color);
    /* Match header text color typically, or primary */
    margin: 10px 0 5px 0;
}

.header-location {
    font-family: 'Neuton', serif;
    font-size: 1.5rem;

    color: var(--primary-color);
    letter-spacing: 1px;
    font-family: "open sans";
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    /* Centered under the line */
}

/* Hero Section */


/* Hero Section */

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-image: url('https://www.dreammaker-remodel.com/lubbock/wp-content/uploads/sites/39/2024/02/25th-Anniversary-Website-Slider.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Align right box to end, left is absolute */
    padding: 0 5%;
    color: var(--white);
    text-align: left;
}

.hero-content-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 25%;
    /* Adjust as needed */
    padding: 40px;
    background-color: rgba(55, 38, 100);
    /* Primary purple */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.hero-content-right {
    position: relative;
    z-index: 1;
    max-width: 500px;
    /* Reduced width */
    margin-right: 5%;
    /* Spacing from right edge */
    text-align: center;
    /* Center text inside right box */
    padding: 20px;
    background-color: rgba(66, 39, 114, 0.9);
    /* Main Purple */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    border-radius: 8px;
}

.hero-content-left h2 {
    font-family: 'Neuton', serif;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.2rem;
    line-height: 2;
    font-weight: 600;
}

.hero-brand {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient to make center brighter (transparent) and edges darker */
    background: radial-gradient(circle at center, rgba(4, 18, 48, 0.2) 20%, rgba(4, 18, 48, 0.7) 80%);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0;
    color: var(--accent-color);
}

.hero p.location {
    font-size: 1.25rem;
    margin-top: 1rem;
    font-weight: 600;
}

/* Main Content */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 20px;
}

.coming-soon-details {
    /* Grid handled by markup now */
    margin-bottom: 4rem;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.info-block h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.info-block hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 1rem 0;
}

.contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-item i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

.contact-item strong {
    margin-right: 5px;
    color: var(--primary-color);
}

/* Gallery */
.gallery-section {
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-section h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
    margin-top: auto;
}

footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {

    /* Hero Responsive */
    .hero {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: auto;
        padding: 60px 20px;
        text-align: center;
    }

    .hero-content-left {
        position: relative;
        width: 100%;
        max-width: 500px;
        margin-bottom: 20px;
        text-align: center;
    }

    .hero-content-right {
        width: 100%;
        max-width: 500px;
        margin-right: 0;
        margin-left: 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p.tagline {
        font-size: 1.2rem;
    }
}