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

body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

*, *::before, *::after {
  box-sizing: border-box;
}


@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  margin:auto;
}

/* 7. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

body::selection{
    color:#e91e63;
}

/*
  10. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

.container {
    width: 100%;
    max-width: 1440px;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

.content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.logo-container {
    margin-bottom: 50px;
    animation: fadeIn 1.2s ease-out;
}

.logo {
    max-width: 450px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.text-content {
    margin-bottom: 60px;
}

.title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: #e91e63;
    font-weight: 600;
}

.cta-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 30px;
}

.social-section {
    margin-top: 50px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.social-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #1a1a1a;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e91e63 0%, #ff4081 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link svg {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
    color: #fff;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.contact-info {
    margin-top: 25px;
}

.email-text,
.phone-text {
    font-size: 1.1rem;
    color: #333;
    margin: 8px 0;
    font-weight: 400;
}

.email-text {
    font-weight: 500;
}

.background-decoration {
    position: fixed;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: float 20s ease-in-out infinite;
}

.background-decoration::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 64, 129, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

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

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

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(5deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .cta-text {
        font-size: 1.2rem;
    }
    
    .logo {
        max-width: 300px;
    }
    
    .social-link {
        width: 55px;
        height: 55px;
    }
    
    .social-link svg {
        width: 24px;
        height: 24px;
    }
    
    .email-text,
    .phone-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.6rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .logo {
        max-width: 250px;
    }
    
    .social-icons {
        gap: 18px;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
    }
    
    .social-link svg {
        width: 22px;
        height: 22px;
    }
}
