@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --primary: #e31e24;
    --primary-light: #ffebec;
    --secondary: #222;
    --accent: #ff4d4d;
    --bg-light: #ffffff;
    --text-main: #1a1a1a;
    --text-muted: #666;
    --glass: rgba(255, 255, 255, 0.85);
    --shadow-main: 0 20px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 30px 60px rgba(227, 30, 36, 0.15);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Animation */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('bg.png') center/cover no-repeat;
    opacity: 0.15;
    z-index: -1;
    filter: saturate(1.2);
    animation: zoomEffect 20s infinite alternate linear;
}

@keyframes zoomEffect {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
}

.container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Header / Status */
.status-badge {
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(227, 30, 36, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
    color: var(--secondary);
}

h1 span {
    color: var(--primary);
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Main Visual */
.image-wrapper {
    width: 100%;
    max-width: 1000px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-main);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 900px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.info-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.info-card:hover {
    background: white;
    transform: scale(1.02);
}

.info-card i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.info-card h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.info-card p {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary);
}

.info-card a {
    text-decoration: none;
    color: inherit;
}

/* Footer */
footer {
    margin-top: 40px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    animation: fadeIn 1s ease-out 0.6s both;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    .info-card p { font-size: 1.1rem; }
}
