/* 
  Housi Under Maintenance Page Styles
  Brand Colors: 
  - Primary text/headings: #053855
  - Accent/Links: #c16452
  - Background: #ffffff / #fcfaf3
  Typography:
  - Headings: Playfair Display
  - Body: Inter, system-ui
*/

:root {
    --primary-color: #053855;
    --accent-color: #c16452;
    --accent-hover: #a14e3e;
    --bg-light: #ffffff;
    --bg-alt: #fcfaf3;
    --text-color: #313131;
    --text-muted: #666666;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Announcement Banner */
.announcement-banner {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Header */
.header {
    background-color: var(--bg-alt);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.maintenance-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(193, 100, 82, 0.1);
    color: var(--accent-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid rgba(193, 100, 82, 0.2);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 80vh;
    background-color: var(--bg-alt);
    display: flex;
    align-items: center;
    padding: 60px 0;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: rgba(193, 100, 82, 0.1);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-text h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 500px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(193, 100, 82, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 100, 82, 0.4);
}

.hero-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 600px;
    box-shadow: 0 20px 40px rgba(5, 56, 85, 0.15);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
    filter: blur(40px);
}

/* Feature Section */
.feature {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.feature-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.feature-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.contact-prompt {
    background-color: var(--bg-alt);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.contact-prompt p {
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.2rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.feature-image {
    position: relative;
    border-radius: 12px;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.image-accent {
    position: absolute;
    top: 20px;
    right: -20px;
    bottom: -20px;
    left: 20px;
    background-color: var(--bg-alt);
    border-radius: 12px;
    z-index: 1;
    border: 1px solid rgba(5, 56, 85, 0.1);
}

/* Google Section */
.google-section {
    padding: 60px 0;
    background-color: var(--bg-alt);
}

.google-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
}

.google-icon-wrapper {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-content h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.google-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 24px;
    max-width: 600px;
}

.google-btn {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid #4285F4;
    color: #4285F4;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.google-btn:hover {
    background-color: #4285F4;
    color: white;
}

/* Footer Section */
.footer {
    background-color: var(--bg-alt);
    padding: 60px 0 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

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

.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-list svg {
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

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

/* Responsive */
@media (max-width: 992px) {
    .feature-container, .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        height: 400px;
        order: -1;
    }

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

    .image-accent {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .google-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-text h2, .google-content h3 {
        font-size: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .header-container {
        flex-direction: column;
        gap: 16px;
    }
}
