/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.gummy-icon-logo {
    height: 40px;
}

.container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    background: #ffffff;
    min-height: 100vh;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.head-logo-gummy {
    border-radius: 20px 20px 0 0;
    border: 3px solid #FF6B8A;
}


/* Pink Header */
.header-pink {
    background-image: url(https://mypurna.com/wp-content/uploads/2022/03/cropped-logo2.png);
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    background-position: center;
    /* border: 3px solid #FF6B8A; */
    height: 120px;
    width: 100%;
    position: relative;
    
}

/* Logo Container */
.logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: -40px;
    margin-bottom: 20px;
}

.logo-circle {
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px #FF6B8A;
    border: 5px solid #ffffff;
}

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* Brand Section */
.brand-section {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.brand-name {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.tagline {
    font-size: 14px;
    color: #888;
    font-weight: 400;
}

/* Menu Items (Registration Form & Product List) */
.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    margin: 0 20px 0 20px;
    background: #ffffff;
    border: none;
    text-decoration: none;
    color: #FF6B8A;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.menu-item:hover,
.menu-item:active {
    background: #FFF5F7;
}

.menu-text {
    color: #FF6B8A;
}

.menu-item i {
    color: #FF6B8A;
    font-size: 14px;
}

/* Find me on Section */
.find-me-section {
    padding: 20px;
    margin-top: 30px;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

/* Social Links */
.social-link {
    display: flex;
    align-items: center;
    padding: 15px 0;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.social-link:hover,
.social-link:active {
    background: #fafafa;
}

.social-link:last-child {
    border-bottom: none;
}

.social-icon-wrapper {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 22px;
}

.social-icon-globe {
    color: #333;
    background: #f5f5f5;
    padding: 12px;
    border-radius: 8px;
}

.social-icon-whatsapp {
    color: #25D366;
    background: #E8F8EE;
    padding: 12px;
    border-radius: 8px;
}

.social-icon-instagram {
    color: #E1306C;
    background: #FFE8F0;
    padding: 12px;
    border-radius: 8px;
}

.social-icon-linkedin {
    color: #0077B5;
    background: #E8F4FA;
    padding: 12px;
    border-radius: 8px;
}

.social-info {
    flex: 1;
}

.social-name {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 2px;
}

.social-handle {
    font-size: 13px;
    color: #888;
}

.arrow-icon {
    color: #ccc;
    font-size: 14px;
}

/* Bottom Indicator */
.bottom-indicator {
    width: 140px;
    height: 4px;
    background: #333;
    border-radius: 2px;
    margin: 30px auto 20px;
}

/* Mobile Optimizations */
@media (min-width: 481px) {
    .container {
        max-width: 480px;
        margin: 20px auto;
        border-radius: 20px;
        overflow: hidden;
        border-radius: 10px 10px 0px 0px;
    }
    
    .header-pink {
        border-radius: 20px 20px 0 0;
    }
}

/* Small Mobile Devices */
@media (max-width: 360px) {
    .header-pink {
        height: 100px;
    }
    
    .logo-container {
        margin-top: -50px;
        margin-bottom: 15px;
    }
    
    .logo-circle {
        width: 80px;
        height: 80px;
    }
    
    .logo-img {
        width: 70px;
        height: 70px;
    }
    
    .menu-item {
        padding: 15px 15px;
        margin: 0 15px 12px 15px;
        font-size: 15px;
    }
    
    .find-me-section {
        padding: 15px;
    }
    
    .social-link {
        padding: 12px 0;
    }
    
    .social-icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .social-name {
        font-size: 15px;
    }
    
    .social-handle {
        font-size: 12px;
    }
    .container{
        border-radius: 10px 10px 0px 0px;
    }
}

/* Landscape Mode */
@media (max-height: 600px) and (orientation: landscape) {
    .header-pink {
        
    }
    
    .logo-container {
        margin-top: -40px;
        margin-bottom: 15px;
    }
    
    .logo-circle {
        width: 70px;
        height: 70px;
    }
    
    .logo-img {
        width: 60px;
        height: 60px;
    }
    
    .brand-section {
        margin-bottom: 20px;
    }
    
    .menu-item {
        padding: 12px 20px;
        margin-bottom: 10px;
    }
    
    .find-me-section {
        margin-top: 20px;
    }
    
    .social-link {
        padding: 10px 0;
    }
}
