/* ============================================
   Home Page Styles
   ============================================ */

/* Hero Section */

.hero {
    min-height: 100vh;
    background: 
        linear-gradient(
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0)
        ),
        url("../images/hero-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: var(--space-xxl) 0;
    text-align: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
}

.logo img {
    display: block;
    width: 120px;          /* desktop default */
    max-width: 100%;
    height: auto;
}

.hero-center {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* LEFT ALIGN */
    text-align: left;
}

/* Logo CTA */
.hero-logo img {
    max-width: 260px;
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}

/* Info Row */
.hero-info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* Left & Right Columns */
.hero-info-left,
.hero-info-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Text Blocks */
.hero-block h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    color: #ED8DBF;
}

.hero-block p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* =========================
   POST-HERO TEXT
========================= */

.post-hero-text {
    background: #fff;
}

.post-hero-text p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    color: #444;
}

/* About Section */
.about-section {
    background: var(--secondary-neutral);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxl);
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-text h2 {
    font-family: var(--font-brand);
    color: var(--primary-brand);
    margin-bottom: var(--space-lg);
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Services Preview */
.services-preview {
    background: var(--background-light);
}

.service-card {
    background: var(--secondary-neutral);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.service-card-image {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-content {
    padding: var(--space-lg);
}

.service-card-title {
    font-size: var(--fs-h3);
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.service-card-description {
    font-size: var(--fs-body-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--space-md);
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0)
    );
}

.service-card-title,
.service-card-description {
    color: #fff;
}

.home-products {
    padding: 80px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 32px;
    margin-bottom: 12px;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    text-align: center;
}

.product-image {
    width: 100%;
    height: 260px;
    background: #f6f6f6;
    overflow: hidden;          /* prevents overflow */
    border-radius: 12px;       /* optional, looks modern */
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;         /* keeps image ratio & fills box */
    display: block;
}

.section-cta {
    text-align: center;
}

/* Meet Tee Section */
.meet-tee {
    background: var(--secondary-neutral);
}

.meet-tee-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxl);
    align-items: center;
}

.meet-tee-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.meet-tee-text h2 {
    font-family: var(--font-brand);
    color: var(--primary-brand);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.meet-tee-text p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Why Choose Us */
.why-choose {
    background: var(--background-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.feature-item {
    background: var(--secondary-neutral);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border-color);
}

.feature-icon {
    font-size: 48px;
    color: var(--primary-brand);
    margin-bottom: var(--space-md);
}

.feature-title {
    font-size: var(--fs-h3);
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.feature-description {
    font-size: var(--fs-body-sm);
    color: var(--text-secondary);
}

/* Consultation Section */
.consultation-section {
    background: var(--secondary-neutral);
}

.consultation-content {
    max-width: 600px;
    margin: 0 auto;
}

.consultation-note {
    background: rgba(237, 141, 191, 0.1);
    border-left: 4px solid var(--primary-brand);
    padding: var(--space-md);
    margin-top: var(--space-lg);
    border-radius: var(--radius-sm);
    font-size: var(--fs-body-sm);
    color: var(--text-secondary);
}

/* Contact Info */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.contact-info-item {
    background: var(--background-light);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    text-align: center;
}

.contact-info-item h3 {
    font-size: var(--fs-h3);
    color: var(--primary-brand);
    margin-bottom: var(--space-sm);
}

.contact-info-item p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Social Links */
.social-links {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-top: var(--space-lg);
}

.social-link {
    width: 48px;
    height: 48px;
    background: var(--primary-brand);
    color: var(--secondary-neutral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: #D97AAB;
    transform: scale(1.1);
}

svg {
  width: 28px;
  height: 28px;
  fill: #333;   /* change color here */
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .logo img {
        width: 50px;     /* balanced for small screens */
        margin: 0 auto;
    }
    
    .hero {
        min-height: 80vh;
        background-size: contain;
        background-position: top center;
    }
    
    .hero-title {
        font-size: 32px;
    }
    .hero-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-info-left,
    .hero-info-right {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .hero-logo img {
        max-width: 170px;
        margin-bottom: 10px;
    }
    .hero-center {
        align-items: center;
        text-align: center;
    }

    .hero-logo {
        display: flex;
        justify-content: center;
    }
    
    .about-content,
    .meet-tee-content {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .service-card-image {
        height: 400px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 220px;
    }
}

@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: 100svh;
    }
}

