* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #F1F1F2;
    color: #333;
    line-height: 1.6;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #1995AD, #A1D6E2);
    color: white;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      }

      .logo img {
        height: 50px;
        width: 50px;
        border-radius: 50%;
        margin-right: 1rem;
    }
.header h1 {
    flex-grow: 1;
    text-align: center;
}

.header nav {
    margin-top: 1rem;
}

.header nav a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.header nav a:hover {
    color: #F1F1F2;
}

.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
}

.upload-section {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.upload-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.upload-zone {
    border: 3px dashed #A1D6E2;
    border-radius: 10px;
    padding: 3rem;
    margin: 2rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-zone:hover {
    border-color: #1995AD;
    background: #F1F1F2;
}

.upload-zone i {
    font-size: 3rem;
    color: #1995AD;
    margin-bottom: 1rem;
}

#fileInput {
    display: none;
}

.btn {
    background: linear-gradient(135deg, #1995AD, #A1D6E2);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease;
    text-decoration: none; 
    display: inline-block; 
    margin-top: 1rem;
}

.btn:hover {
    transform: translateY(-2px);
}

.preview-section {
    display: none;
    margin-top: 2rem;
}

.image-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.image-box {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.image-box img {
    width: 100%;
    border-radius: 8px;
}

.creator-section {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.creator-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.social-icons {
    margin-top: 1rem;
}

.social-icon {
    color: #1995AD;
    font-size: 2rem;
    margin: 0 1rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    color: #A1D6E2;
}

.footer {
    background: #1995AD;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .image-container {
        grid-template-columns: 1fr;
    }
    
    .upload-section {
        padding: 2rem 1rem;
    }
}