* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #FFE4E1;
    color: #4A4A4A;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    background: linear-gradient(135deg, #FF69B4, #FFB6C1);
    padding: 40px 20px;
    text-align: center;
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 600px;
    margin: 0 auto;
}

h1 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
    font-size: 1.8rem;
    opacity: 0.9;
    color: #FFD700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    flex: 1;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-item {
    background-color: white;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%;
    border: 3px solid #B19CD9;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(177, 156, 217, 0.3);
}

.image-container {
    width: 100%;
    height: 90%;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid #B19CD9;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.05);
}

.image-title {
    color: #B19CD9;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 8px;
    font-weight: 500;
}

textarea {
    width: 100%;
    min-height: 60px;
    padding: 8px;
    border: 2px solid #C0C0C0;
    border-radius: 8px;
    resize: vertical;
    font-family: inherit;
    font-size: 12px;
    color: #4A4A4A;
    background-color: #FFF;
    margin-top: auto;
}

textarea:focus {
    outline: none;
    border-color: #A9A9A9;
    box-shadow: 0 0 5px rgba(192, 192, 192, 0.3);
}

textarea::placeholder {
    color: #FFB6C1;
}

.footer {
    background: linear-gradient(135deg, #FFB6C1, #FF69B4);
    color: white;
    padding: 30px 20px;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer p {
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.social-links {
    margin-bottom: 15px;
}

.instagram-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
}

.instagram-link:hover {
    opacity: 0.8;
}

.social-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

@media (max-width: 1024px) {
    .gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        padding: 30px 15px;
    }

    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .footer {
        padding: 20px 15px;
    }

    .footer-links {
        gap: 15px;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 15px;
    }

    .image-container {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 20px 10px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .gallery {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 10px;
    }

    .image-container {
        height: 160px;
    }
} 