/* Local Font Declarations */
@font-face {
    font-family: 'Gopher';
    src: url('fonts/gopher/Gopher-Medium.woff2') format('woff2'),
         url('fonts/gopher/Gopher-Medium.woff') format('woff'),
         url('fonts/gopher/Gopher-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gopher';
    src: url('fonts/gopher/Gopher-Bold.woff2') format('woff2'),
         url('fonts/gopher/Gopher-Bold.woff') format('woff'),
         url('fonts/gopher/Gopher-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.main-container {
    width: 100%;
    min-height: 100vh;
    padding:50px 20px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Outer Card Container (for background logos) */
.voaba-card-outer {
    max-width: 400px;
    position: relative;
    margin: auto;
    border-radius: 25px;
}




/* Faded background logos */
.voaba-card-outer::before,
.voaba-card-outer::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background-image: url('logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.voaba-card-outer::before {
    top: -140px;
    left: -200px;
}

.voaba-card-outer::after {
    bottom: -135px;
    right: -250px;
}

@media screen and (max-width: 600px) {
    .voaba-card-outer::before,
.voaba-card-outer::after {
     width: 200px;
    height:200px;
    object-fit: cover;

}
  .voaba-card-outer::before {
    top: -60px;
    left: -60px;
}

.voaba-card-outer::after {
    bottom: -60px;
    right: -70px;
}
}

/* // min width 700px and max width 999px */
@media screen and (min-width: 700px) and (max-width: 999px) {
   .main-container{
    padding-top: 80px;
   }

       .voaba-card-outer::before,
.voaba-card-outer::after {
     width: 350px;
    height: 350px;
    object-fit: cover;

}
  .voaba-card-outer::before {
    top: -100px;
    left: -140px;
}

.voaba-card-outer::after {
    bottom: -100px;
    right: -150px;
}
}


/* Inner Card Container (for content) */
.voaba-card {
    background-color: #FFF9EB;
    border: 3px solid #017453;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(1, 116, 83, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

/* Left Column (contains logo and content on desktop, everything on mobile) */
.left-column {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

/* Logo Section */
.logo-section {
    margin-bottom: 32px;
}

.main-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #017453;
    padding: 10px;
    background-color: transparent;
}

/* Content Section */
.content-section {
    margin-bottom: 40px;
}

.main-title {
    font-family: 'Gopher', sans-serif;
    font-weight: 700;
    font-style: bold;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: bottom;
    color: #000;
    margin-bottom: 5px;
}

.subtitle {
    font-family: 'Gopher', sans-serif;
    font-weight: 700;
    font-style: bold;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: bottom;
    color: #FF6B35;
    margin-bottom: 20px;
}

.description {
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-style: medium;
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: bottom;
    color: #333;
    margin-bottom: 20px;
    padding: 0 10px;
}

.tagline {
    font-family: 'Gopher', sans-serif;
    font-weight: 500;
    font-style: medium;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: bottom;
    color: #FF6B35;
}

/* Social Media Buttons */
.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    border-radius: 40px;
    padding: 8px 16px;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: transform 0.2s ease;
    border: none;
    cursor: pointer;
    opacity: 1;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.social-btn:hover {
    transform: translateY(-2px);
}

.btn-text {
    color: white;
    flex: 1;
    text-align: left;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-style: bold;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: bottom;
}

.social-icon {
    width: 36px;
    height: 36px;
}

/* LinkedIn Button */
.linkedin-btn {
    background: linear-gradient(90deg, #3DAFE7 0%, #3684E8 100%);
}

/* YouTube Button */
.youtube-btn {
    background: linear-gradient(90deg, #FB324A 0%, #FB4F67 100%);
}

/* TikTok Button */
.tiktok-btn {
    background: linear-gradient(90deg, #0C0C0C -20.54%, #090909 50%);
}

/* Instagram Button */
.instagram-btn {
    background: linear-gradient(90deg, #EB4967 0%, #D33D94 60.05%, #4F5DCA 101.96%, #FFCA52 143.02%);
}

/* Facebook Button */
.facebook-btn {
    background: linear-gradient(90deg, #3684E8 0%, #01477D 100%);
}

/* X (Twitter) Button */
.x-btn {
    background: linear-gradient(90deg, #0C0C0C -20.54%, #090909 50%);
}

.whats-app-btn {
    background: linear-gradient(90deg, #25D366 -20.54%, #075E54 119.35%);

}

/* Desktop/Tablet View */
@media screen and (min-width: 1000px) {
    body {
        /* padding: 40px; */
        background-color: #FFF9EB;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
    }
    
    .main-container {
        width: 100%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .voaba-card-outer {
        max-width: 1120px;
        border-radius: 40px;
    }
    
    .voaba-card {
        border: 2px solid #017453;
        border-radius: 40px;
        padding: 64px;
        box-shadow: 0 10px 30px rgba(1, 116, 83, 0.1);
        background-color: #FFF9EB;
        text-align: left;
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    
    /* Left Column - Logo and Content */
    .left-column {
        display: flex;
        flex-direction: column;
    }
    
    .logo-section {
        /* margin-bottom: 40px; */
        text-align: left;
    }
    
    .main-logo {
        width: 200px;
        height: 200px;
        border: 2px solid #017453;
        padding: 12px;
        background-color: transparent;
    }
    
    .content-section {
        margin-bottom: 0;
        text-align: left;
    }
    
    .main-title {
        font-family: 'Gopher', sans-serif;
        font-weight: 700;
        font-style: bold;
        font-size: 48px;
        line-height: 100%;
        letter-spacing: 0%;
        vertical-align: bottom;
        text-align: left;
        margin-bottom: 0.5rem;
    }
    
    .subtitle {
        font-family: 'Gopher', sans-serif;
        font-weight: 700;
        font-style: bold;
        font-size: 24px;
        line-height: 100%;
        letter-spacing: 0%;
        vertical-align: bottom;
        margin-bottom: 2rem;
        text-align: left;
    }
    
    .description {
        font-family: 'Lato', sans-serif;
        font-weight: 500;
        font-style: medium;
        font-size: 18px;
        line-height: 30px;
        letter-spacing: 0%;
        vertical-align: bottom;
        padding: 0;
        margin-bottom: 1.5rem;
        text-align: left;
    }
    
    .tagline {
        font-family: 'Gopher', sans-serif;
        font-weight: 500;
        font-style: medium;
        font-size: 22px;
        line-height: 30px;
        letter-spacing: 0%;
        vertical-align: bottom;
        text-align: left;
    }
    
    /* Right Column - Social Buttons */
    .social-buttons {
        display: flex;
        flex-direction: column;
        gap: 32px;
        padding: 0;
    }
    
    .social-btn {
        max-width: 504px;
        height: 80px;
        justify-content: space-between;
        border-radius: 40px;
        padding: 16px 32px;
        font-size: 0.95rem;
        min-width: auto;
        width: 100%;
    }
    
    .btn-text {
        font-family: 'Lato', sans-serif;
        font-weight: 700;
        font-style: bold;
        font-size: 24px;
        line-height: 30px;
        letter-spacing: 0%;
        vertical-align: bottom;
    }
    
    .social-icon {
        width: 48px;
        height: 48px;
    }
}

/* Large Desktop View */
@media screen and (min-width: 1024px) {
 
    .voaba-card-outer {
        border-radius: 40px;
    }
    
    .voaba-card {
        padding: 64px;
        gap: 80px;
        max-width: 1120px;
        border-radius: 40px;
        border-width: 2px;
    }

    
    .main-logo {
        width: 200px;
        height: 200px;
        padding: 15px;
    }
    
    .main-title {
        font-family: 'Gopher', sans-serif;
        font-weight: 700;
        font-style: bold;
        font-size: 48px;
        line-height: 100%;
        letter-spacing: 0%;
        vertical-align: bottom;
        margin-bottom: 0.8rem;
    }
    
    .subtitle {
        font-family: 'Gopher', sans-serif;
        font-weight: 700;
        font-style: bold;
        font-size: 24px;
        line-height: 100%;
        letter-spacing: 0%;
        vertical-align: bottom;
        margin-bottom: 2.5rem;
    }
    
    .description {
        font-family: 'Lato', sans-serif;
        font-weight: 500;
        font-style: medium;
        font-size: 18px;
        line-height: 30px;
        letter-spacing: 0%;
        vertical-align: bottom;
        margin-bottom: 2rem;
    }
    
    .tagline {
        font-family: 'Gopher', sans-serif;
        font-weight: 500;
        font-style: medium;
        font-size: 22px;
        line-height: 30px;
        letter-spacing: 0%;
        vertical-align: bottom;
    }
    
    .social-buttons {
        gap: 20px;
    }
    
    .social-btn {
        gap: 16px;
        max-width: 504px;
        height: 80px;
        box-sizing: border-box;
        padding: 16px 32px;
        font-size: 1.05rem;
        border-radius: 40px;
        white-space: nowrap;
    }
    
    .btn-text {
        font-family: 'Lato', sans-serif;
        font-weight: 700;
        font-style: bold;
        font-size: 24px;
        line-height: 30px;
        letter-spacing: 0%;
        vertical-align: bottom;
    }
    
    .social-icon {
        width: 48px;
        height: 48px;
    }
}

/* Small Mobile View */
@media screen and (max-width: 380px) {
    body {
        padding: 15px;
    }
    
    .voaba-card-outer {
        border-radius: 20px;
        overflow: hidden;
    }
    
    .voaba-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .main-logo {
        width: 100px;
        height: 100px;
    }
    
    .main-title {
        font-size: 1.6rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .description {
        font-size: 0.85rem;
        padding: 0 5px;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .social-btn {
        padding: 12px 15px;
        font-size: 0.8rem;
    }
    
    .social-icon {
        width: 20px;
        height: 20px;
    }
    
    .social-buttons {
        gap: 24px;
    }
}

/* Accessibility */
.social-btn:focus {
    outline: none;
}

@media (prefers-reduced-motion: reduce) {
    .social-btn {
        transition: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .voaba-card {
        border-width: 4px;
    }
    
    .main-logo {
        border-width: 4px;
    }
}
