@import url('https://fonts.googleapis.com/css2?family=Kantumruy+Pro:ital,wght@0,100..700;1,100..700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #1a1a1a;
    --secondary-dark: #2a2a2a;
    --cream: #e8e6e3;
    --light-gray: #f5f5f5;
    --medium-gray: #666666;
    --border-color: #d0d0d0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--primary-dark);
    background-color: var(--cream);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cream);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 120px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.15) 0%, transparent 70%);
    filter: blur(20px);
    pointer-events: none;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 1000px;
    padding: 80px 40px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    margin-bottom: 100px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.logo-placeholder {
    display: none;
}

.company-name {
    font-family: "Kantumruy Pro", sans-serif;
    font-size: 60px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: none;
    color: var(--primary-dark);
    margin-bottom: -45px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 50px;
    color: var(--primary-dark);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-title em {
    font-style: italic;
}

.hero-banner {
    background-color: transparent;
    padding: 0;
    margin: 0 0 50px 0;
    max-width: 700px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-banner h3 {
    font-family: "Kantumruy Pro", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: var(--primary-dark);
    line-height: 1.4;
}

.hero-banner p {
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
    color: var(--secondary-dark);
}

.services-list {
    display: none;
}

.cta-button {
    background-color: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    border-radius: 50px;
    padding: 16px 45px;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 1s both;
    font-family: 'Inter', sans-serif;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* About Section */
.about {
    background-color: var(--light-gray);
    padding: 120px 40px;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 35px;
    color: var(--primary-dark);
}

.about-text .highlight {
    font-weight: 400;
    font-style: italic;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--secondary-dark);
    font-weight: 300;
}

.about-text p strong {
    font-weight: 500;
    color: var(--primary-dark);
}

.commitment {
    font-weight: 400;
    margin-top: 35px;
    margin-bottom: 45px;
}

.learn-more-button {
    background-color: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    border-radius: 50px;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.learn-more-button:hover {
    background-color: var(--primary-dark);
    color: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about-image {
    position: relative;
}

.image-placeholder {
    /* width: 100%; */
    height: 250px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* Contact Section */
.contact {
    background-color: var(--cream);
    padding: 120px 40px;
}

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

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 50px;
    color: var(--primary-dark);
}

.contact-details {
    margin-bottom: 70px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-item .icon {
    color: var(--primary-dark);
    flex-shrink: 0;
    margin-top: 4px;
    opacity: 0.7;
}

.contact-item p {
    font-size: 1rem;
    color: var(--secondary-dark);
    line-height: 1.6;
    font-weight: 300;
}

.office-hours h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.hours-group {
    margin-bottom: 20px;
}

.hours-group .day {
    font-weight: 500;
    color: var(--primary-dark);
    font-size: 1rem;
    margin-bottom: 5px;
}

.hours-group .time {
    color: var(--secondary-dark);
    font-size: 1rem;
    font-weight: 300;
}

.appointment-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.appointment-button {
    background-color: var(--primary-dark);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 18px 50px;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0;
    cursor: pointer;
    margin-top: 100px;
    margin-bottom: 50px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
    font-family: 'Inter', sans-serif;
}

.appointment-button:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.availability {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.appointment-note {
    font-size: 0.95rem;
    color: var(--secondary-dark);
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 450px;
    font-weight: 300;
}

.appointment-note em {
    font-style: normal;
    font-weight: 500;
}

.qr-code {
    margin-bottom: 60px;
}

.qr-placeholder {
    width: 180px;
    height: 180px;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: white;
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.brand-footer {
    margin-top: 50px;
}

.logo-small {
    display: none;
}

.texas-stamp-image{
    width: 300px;
}

.tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--primary-dark);
    font-style: italic;
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: #999;
    text-align: center;
    padding: 35px 20px;
    font-size: 0.9rem;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 70px;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 60px 30px;
    }

    .hero-title {
        font-size: 3rem;
    }
    
    .hero-banner h3 {
        font-size: 1.3rem;
    }
    
    .hero-banner p {
        font-size: 0.95rem;
    }
    
    .about {
        padding: 80px 30px;
    }
    
    .about-text h2 {
        font-size: 1.9rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
    
    .image-placeholder {
        height: 400px;
    }
    
    .contact {
        padding: 80px 30px;
    }
    
    .contact-info h2,
    .availability {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-banner {
        padding: 0;
    }
    
    .cta-button,
    .learn-more-button,
    .appointment-button {
        width: 100%;
        max-width: 100%;
    }
}
