@import url('https://fonts.googleapis.com/css2?family=Sirivennela&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #fce7f3 0%, #fce4ec 50%, #fef3c7 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}


/* Decorative Background Elements */
.background-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.blob-1 {
    position: absolute;
    top: 5%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: rgba(244, 114, 182, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.blob-2 {
    position: absolute;
    bottom: 5%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

/* Main Container */
.container {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Logo */
.logo-section {
    margin-bottom: 30px;
    text-align: center;
}

.logo {
    width: 253px;
    height: 253px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    transition: transform 0.5s ease;
}

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

@media (min-width: 768px) {
    .logo {
        width: 253px;
        height: 253px;
    }
}

/* Business Name */
.business-name {
    font-size: 2.5rem;
    font-weight: bold;
    color: #970913;
    margin-bottom: 10px;
    
    text-align: center;
    letter-spacing: -0.5px;
}
.caps{font-family: 'Georgia', serif; text-transform: uppercase;}
.cursive{font-family: "Sirivennela", sans-serif; font-size: 80px;}

@media (min-width: 768px) {
    .business-name {
        font-size: 3.5rem;
    }
}

/* Tagline */
.tagline {
    font-size: 1.1rem;
    color: #ec4899;
    font-style: italic;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .tagline {
        font-size: 1.4rem;
    }
}

/* Description */
.description {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
    max-width: 600px;
}

@media (min-width: 768px) {
    .description {
        font-size: 1.1rem;
    }
}

/* Hashtags */
.hashtags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.hashtag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.hashtag-1 {
    background-color: #fce7f3;
    color: #be185d;
	border: solid 1px #be185d4a;
}

.hashtag-2 {
    background-color: #fce4ec;
    color: #ec4899;
	border: solid 1px #ec489973;
}

.hashtag-3 {
    background-color: #fef3c7;
    color: #b45309;
	border: solid 1px #b4530961;
}

/* Menu CTA */
.menu-cta-text {
    font-size: 1.1rem;
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

/* Download Button */
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f43f5e 0%, #ec4899 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(244, 63, 94, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 50px;
}

.download-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(244, 63, 94, 0.4);
}

.download-btn:active {
    transform: scale(0.98);
}

/* Connect Section */
.connect-section {
    background: linear-gradient(135deg, #f472b6 0%, #f97316 100%);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.connect-title {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .connect-title {
        font-size: 2rem;
    }
}

.connect-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 640px) {
    .connect-links {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: white;
    color: #1f2937;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-link:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-link.whatsapp {
    color: #22c55e;
}

.contact-link.instagram {
    color: #ec4899;
}

.icon {
    width: 20px;
    height: 20px;
}

/* Footer */
footer {
    position: relative;
    z-index: 1;
    background: linear-gradient(90deg, #f472b6 0%, #f97316 100%);
    color: #1f2937;
    text-align: center;
    padding: 15px 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

footer a {
    color: #1f2937;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .business-name {
        font-size: 2rem;
    }
    .cursive{font-size: 53px;}
    .tagline {
        font-size: 1rem;
    }

    .connect-section {
        padding: 30px 20px;
    }

    .connect-title {
        font-size: 1.5rem;
    }

    .contact-link {
        width: 100%;
        justify-content: center;
    }

    .contact-link span {
        display: none;
    }

    .contact-link.whatsapp span,
    .contact-link.instagram span {
        display: inline;
    }
}

