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

:root {
    --bg-color: #fffbf5;
    --text-color: #2d2d2d;
    --accent-color: #e68a5c;
    --soft-accent: #f4d1bc;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow: 0 10px 30px rgba(230, 138, 92, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: calc(100vh - 100px);
}

/* Header */
.main-header {
    width: 100%;
    padding: 20px 20px 10px;
    text-align: center;
}

.main-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    width: 100%;
}

.img-container {
    flex: 1;
    max-width: 450px;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.img-container:hover {
    transform: translateY(-10px) scale(1.02);
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.1));
}

/* Content */
.content {
    max-width: 800px;
    margin: 10px 0 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards 0.2s;
}

.cta-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.1;
    letter-spacing: -1px;
}

/* Widgets */
.widgets {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 500px;
    justify-content: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards 0.4s;
}

.widget-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 24px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}

.telegram {
    background: #0088cc;
    color: white;
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.widget-btn:hover {
    transform: translateY(-5px);
    filter: brightness(1.1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.widget-btn svg {
    width: 24px;
    height: 24px;
}

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

/* Mobile Adjustments */
@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }
    
    .image-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .img-container {
        max-width: 100%;
        aspect-ratio: 1/1;
    }

    .main-header {
        padding: 15px 15px 5px;
    }

    .main-header h1 {
        font-size: 0.9rem;
    }

    .cta-text {
        font-size: 2rem;
    }

    .widgets {
        flex-direction: column;
        width: 100%;
        margin-bottom: 40px;
    }
}

/* Background elements */
.blob {
    position: fixed;
    width: 300px;
    height: 300px;
    background: var(--soft-accent);
    filter: blur(80px);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.4;
}

.blob-1 { top: -100px; right: -100px; }
.blob-2 { bottom: -100px; left: -100px; }
