* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Header Section */
.header {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    padding: 40px 0 60px;
    border-radius: 0 0 30px 30px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: 'keskinoglu';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.06;
    font-size: 140px;
    font-weight: 700;
    letter-spacing: 30px;
    color: rgba(0, 0, 0, 0.08);
    pointer-events: none;
    white-space: nowrap;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.mascot-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    background: transparent;
}


/* Gallery Section */
.gallery-section {
    width: 100%;
    margin: 40px 0;
    padding: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
    padding: 0;
}

.gallery-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1;
}

.gallery-image:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.brand-name {
    font-size: 18px;
    font-weight: 400;
    color: #999;
    letter-spacing: 0;
    text-align: center;
    margin-top: auto;
    padding-bottom: 30px;
    padding-top: 20px;
}

/* Buttons Section */
.buttons-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 18px 24px;
    background-color: #ffffff;
    border: none;
    border-radius: 16px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-button i {
    font-size: 24px;
    width: 30px;
    text-align: center;
}

.social-button:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.social-button:active {
    transform: scale(0.98);
}

/* Icon Colors */
.instagram i {
    color: #E4405F;
}

.snapchat i {
    color: #FFE700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.facebook i {
    color: #1877F2;
}

.tiktok i {
    color: #000000;
}

.whatsapp i {
    color: #25D366;
}

.tajfood i {
    color: #FF6B35;
}

/* Responsive Design */
@media (max-width: 480px) {

    .header {
        padding: 30px 0 50px;
        margin-bottom: 30px;
    }

    .mascot-image {
        width: 100%;
    }

    .header::before {
        font-size: 100px;
        letter-spacing: 15px;
    }

    .brand-name {
        font-size: 16px;
        padding-bottom: 25px;
    }

    .social-button {
        padding: 16px 20px;
        font-size: 15px;
    }

    .social-button i {
        font-size: 22px;
        width: 28px;
    }

    .buttons-section {
        gap: 14px;
    }

    .gallery-grid {
        gap: 6px;
    }

    .gallery-image {
        border-radius: 10px;
    }

    .gallery-section {
        margin: 30px auto;
    }
}

@media (min-width: 481px) {
    .header {
        padding: 50px 0 70px;
    }

    .mascot-image {
        width: 100%;
    }

    .header::before {
        font-size: 160px;
        letter-spacing: 35px;
    }

    .brand-name {
        font-size: 18px;
    }
}

