/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    padding-bottom: 20px;
}

/* ========================================
   LAYOUT CONTAINERS
   ======================================== */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 3rem;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 1rem;
    }
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h2, h4, h5 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

.page-title,
.section-title {
    font-size: calc(1.375rem + 1.5vw);
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin-bottom: 1rem;
}

@media (min-width: 1200px) {
    .page-title,
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .page-title,
    .section-title {
        font-size: 1.75rem;
    }
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 300;
}

@media (max-width: 767px) {
    .lead-text {
        font-size: 1.1rem;
    }
}

.text-emphasis {
    color: #000;
}

.text-secondary {
    color: #6c757d;
}

.text-center {
    text-align: center;
}

.text-start {
    text-align: left;
}

.text-end {
    text-align: right;
}

/* ========================================
   HERO SECTIONS
   ======================================== */
.hero-section {
    padding: 3rem 2rem;
    margin: 0 auto;
    max-width: 1100px;
}

@media (min-width: 768px) {
    .hero-section {
        padding: 3rem 4rem;
    }
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.hero-content--reverse {
    flex-direction: row-reverse;
}

.hero-image {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.hero-text {
    flex: 1;
    min-width: 280px;
}

@media (max-width: 991px) {
    .hero-content,
    .hero-content--reverse {
        flex-direction: column;
    }
    
    .hero-section {
        padding: 1.5rem 1rem;
    }
}

/* ========================================
   PRICING SECTIONS
   ======================================== */
.pricing-section {
    background-color: #FFFFF2;
    padding: 1.5rem 2rem;
}

@media (min-width: 768px) {
    .pricing-section {
        padding: 2rem 4rem;
    }
}

.pricing-header {
    padding: 1rem 2rem 0;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .pricing-header {
        padding: 2rem 4rem 0;
    }
}

.pricing-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

@media (min-width: 768px) {
    .pricing-content {
        padding: 0 3rem 3rem;
    }
}

.pricing-table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    border-collapse: collapse;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    font-size: 1.25rem;
    font-weight: 300;
}

.pricing-table td {
    border: 1px solid #dee2e6;
    padding: 0.75rem;
}

.pricing-table a {
    color: #0d6efd;
    text-decoration: none;
}

.pricing-table a:hover {
    color: #0a58ca;
    text-decoration: underline;
}

/* ========================================
   FEATURE SECTIONS
   ======================================== */
.feature-section {
    padding: 3rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .feature-section {
        padding: 3rem 4rem;
    }
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.feature-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.feature-content {
    padding: 1rem;
}

@media (max-width: 767px) {
    .feature-section {
        padding: 1.5rem 1rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ========================================
   TEAM SECTION
   ======================================== */
.team-section {
    padding: 3rem 2rem;
}

@media (min-width: 768px) {
    .team-section {
        padding: 3rem 4rem;
    }
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    padding: 3rem 2rem;
    text-align: center;
}

.team-member__image {
    border-radius: 50%;
    width: 240px;
    height: 240px;
    margin: 0 auto 1.5rem;
}

.team-member__name {
    font-weight: 400;
    margin: 1.5rem 0;
}

@media (max-width: 767px) {
    .team-section {
        padding: 1.5rem 1rem;
    }
    
    .team-grid {
        padding: 2rem 1rem;
        gap: 2rem;
    }
}

/* ========================================
   GALLERY/PORTFOLIO SECTION
   ======================================== */
.gallery-section {
    background-color: #FFFFF2;
    padding: 3rem 2rem;
}

@media (min-width: 768px) {
    .gallery-section {
        padding: 3rem 4rem;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    overflow: hidden;
}

.gallery-card__image {
    width: 100%;
    height: 225px;
    object-fit: cover;
}

.gallery-card__content {
    padding: 1rem;
    text-align: center;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    padding: 1rem 2rem;
}

@media (min-width: 768px) {
    .contact-section {
        padding: 2rem 4rem;
    }
}

.contact-info-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-form-card {
    background-color: #FFFFF2;
    border-radius: 20px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    padding: 2rem;
}

@media (min-width: 768px) {
    .contact-form-card {
        padding: 3rem;
    }
}

.contact-form__title {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    max-width: 66.666%;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.5rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

@media (max-width: 767px) {
    .form-group {
        max-width: 100%;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   BUTTONS & CALL-TO-ACTIONS
   ======================================== */
.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    border-radius: 0.5rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.btn-primary {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    color: #fff;
    background-color: #0b5ed7;
    border-color: #0a58ca;
    text-decoration: none;
}

.btn-cta {
    padding: 0.5rem 1.5rem;
}

.cta-wrapper {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0;
    margin: 2rem 0;
}

/* ========================================
   DIVIDERS
   ======================================== */
.section-divider {
    width: 100%;
    height: 15px;
    display: block;
    margin: 1.5rem 0;
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
    border-bottom: 1px solid #dee2e6;
    padding: 0.5rem 0;
    margin-bottom: 0;
}

.header-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-logo {
    flex: 1;
    min-width: 200px;
    padding: 0.5rem 0 1rem;
}

.site-logo img {
    width: 260px;
    max-width: 100%;
}

.site-nav {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 1.2em;
    color: #000;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

.nav-link:hover {
    color: #FFD700;
    text-decoration: none;
}

@media (max-width: 991px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .site-nav {
        width: 100%;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    padding: 1rem 0 2rem;
    margin-top: 2rem;
}

.footer-nav {
    border-top: 1px solid #dee2e6;
    padding: 1rem 0;
    margin-bottom: 1rem;
}

.footer-nav .nav-list {
    justify-content: center;
}

.footer-nav .nav-link {
    font-size: 1rem;
    color: #6c757d;
}

.footer-copyright {
    text-align: center;
    color: #6c757d;
}

.screen-size-indicator {
    text-align: right;
    font-size: 9px;
    color: #dee2e6;
    opacity: 0.3;
}

.screen-size-indicator span {
    display: none;
}

@media (max-width: 575px) {
    .screen-size-indicator .xs {
        display: inline;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .screen-size-indicator .sm {
        display: inline;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .screen-size-indicator .md {
        display: inline;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .screen-size-indicator .lg {
        display: inline;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .screen-size-indicator .xl {
        display: inline;
    }
}

@media (min-width: 1400px) {
    .screen-size-indicator .xxl {
        display: inline;
    }
}

/* ========================================
   CUSTOM LISTS
   ======================================== */
.custom-bullet-list {
    list-style: none;
    padding-left: 20px;
}

.custom-bullet-list li {
    background-image: url('/images/gold-paintbrush-v1.jpg');
    background-repeat: no-repeat;
    background-position: 0 5px;
    padding-left: 31px;
    margin-bottom: 10px;
    background-size: 20px 20px;
    font-size: 1.25rem;
    font-weight: 300;
}

@media (max-width: 767px) {
    .custom-bullet-list li {
        font-size: 1.1rem;
    }
}

/* ========================================
   IMAGES
   ======================================== */
img {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

/* ========================================
   LINKS
   ======================================== */
a {
    color: #0d6efd;
    text-decoration: none;
}

a:hover {
    color: #0a58ca;
    text-decoration: underline;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.hidden {
    display: none;
}

.rounded {
    border-radius: 0.375rem;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* SVG icons */
svg.icon-hidden {
    display: none;
}
