/* Complete redesign with Apple-style modern aesthetics */ * { margin: 0; padding: 0; box-sizing: border-box; } :root { --bg-dark: #1a1a1a; --gold: #ab824d; --white: #ffffff; --white-70: rgba(255, 255, 255, 0.7); --white-50: rgba(255, 255, 255, 0.5); --white-10: rgba(255, 255, 255, 0.1); --white-05: rgba(255, 255, 255, 0.05); --card-bg: rgba(30, 30, 30, 0.95); --gold-20: rgba(171, 130, 77, 0.2); --gold-10: rgba(171, 130, 77, 0.1); } body { font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif; background: var(--bg-dark); color: var(--white); min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } /* New modern loader with dynamic rings */ .loader { position: fixed; inset: 0; background: var(--bg-dark); display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 10000; transition: opacity 0.6s ease, visibility 0.6s ease; } .loader.hidden { opacity: 0; visibility: hidden; } .loader-container { position: relative; width: 80px; height: 80px; } .loader-ring { position: absolute; inset: 0; border: 2px solid transparent; border-top-color: var(--gold); border-radius: 50%; animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite; } .loader-ring:nth-child(2) { inset: 10px; border-top-color: var(--gold); opacity: 0.7; animation-delay: -0.5s; } .loader-ring:nth-child(3) { inset: 20px; border-top-color: var(--gold); opacity: 0.4; animation-delay: -1s; } .loader-dot { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 12px; height: 12px; background: var(--gold); border-radius: 50%; animation: pulse 1.5s ease-in-out infinite; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } @keyframes pulse { 0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; } 50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.3; } } .loader-text { margin-top: 30px; color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 3px; animation: fadeInOut 2s ease-in-out infinite; } @keyframes fadeInOut { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } } /* Prominent language selector */ .language-selector { position: fixed; top: 24px; right: 24px; z-index: 9999; display: flex; gap: 6px; background: var(--card-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 6px; border-radius: 20px; border: 1px solid var(--white-10); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6); } .lang-btn { background: transparent; border: none; color: var(--white-50); font-size: 13px; font-weight: 700; padding: 10px 14px; border-radius: 14px; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); font-family: inherit; letter-spacing: 0.5px; position: relative; } .lang-btn:hover { color: var(--white); background: var(--white-05); } .lang-btn.active { background: var(--gold); color: var(--bg-dark); } /* Completely new card structure */ .vcard-container { width: 100%; max-width: 420px; animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1); } @keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } } .vcard { background: var(--card-bg); backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px); border-radius: 32px; border: 1px solid var(--white-10); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7); overflow: hidden; } /* New hero section with Apple-style photo design */ .hero-section { padding: 48px 32px 36px; text-align: center; position: relative; background: linear-gradient(180deg, var(--gold-10) 0%, transparent 100%); } .photo-wrapper { position: relative; display: inline-block; margin-bottom: 24px; } .photo-bg-effect { position: absolute; inset: -40px; background: radial-gradient(circle, var(--gold-20), transparent 70%); filter: blur(40px); animation: breathe 4s ease-in-out infinite; } @keyframes breathe { 0%, 100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.1); opacity: 1; } } .photo-ring-outer { position: absolute; inset: -6px; background: conic-gradient(from 0deg, var(--gold), transparent, var(--gold)); border-radius: 50%; animation: rotate 8s linear infinite; } .photo-ring-inner { position: absolute; inset: -3px; background: var(--bg-dark); border-radius: 50%; } @keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } .profile-img { position: relative; width: 140px; height: 140px; border-radius: 50%; object-fit: cover; display: block; box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5); transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); } .profile-img:hover { transform: scale(1.05); } .name { font-size: 32px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 8px; color: var(--white); } .title { font-size: 15px; font-weight: 500; color: var(--gold); letter-spacing: 0.3px; } /* Section styling */ .section { padding: 24px 24px; } .section-heading { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--white-50); margin-bottom: 16px; } /* iOS-style contact cards */ .contact-list { display: flex; flex-direction: column; gap: 8px; } .contact-card { display: flex; align-items: center; gap: 14px; padding: 16px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--white-05); border-radius: 16px; text-decoration: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); } .contact-card:hover { background: var(--gold-10); border-color: var(--gold-20); transform: translateX(4px); } .contact-card:active { transform: scale(0.98); } .contact-icon-wrapper { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; min-width: 44px; background: var(--gold-10); border-radius: 12px; } .contact-icon { width: 20px; height: 20px; color: var(--gold); } .contact-info { flex: 1; display: flex; flex-direction: column; gap: 2px; } .contact-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--white-50); } .contact-value { font-size: 15px; font-weight: 600; color: var(--white); } .contact-arrow { width: 18px; height: 18px; color: var(--white-50); opacity: 0; transition: all 0.3s ease; } .contact-card:hover .contact-arrow { opacity: 1; transform: translateX(4px); } /* Modern social grid */ .social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; } .social-link { display: flex; align-items: center; justify-content: center; height: 60px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--white-05); border-radius: 16px; color: var(--gold); text-decoration: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); } .social-link:hover { background: var(--gold-10); border-color: var(--gold-20); transform: translateY(-4px); box-shadow: 0 8px 24px var(--gold-20); } .social-link:active { transform: translateY(-2px); } .social-link svg { width: 22px; height: 22px; } /* Action buttons */ .action-section { padding: 20px 24px 28px; display: flex; gap: 12px; } .btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 24px; border: none; border-radius: 14px; font-size: 15px; font-weight: 600; cursor: pointer; font-family: inherit; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); letter-spacing: 0.2px; } .btn svg { width: 18px; height: 18px; } .btn-primary { background: var(--gold); color: var(--bg-dark); box-shadow: 0 4px 16px rgba(171, 130, 77, 0.4); } .btn-primary:hover { background: #c49a5e; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(171, 130, 77, 0.5); } .btn-primary:active { transform: scale(0.96); } .btn-secondary { background: rgba(255, 255, 255, 0.05); color: var(--white); border: 1px solid var(--white-10); } .btn-secondary:hover { background: var(--gold-10); border-color: var(--gold-20); transform: translateY(-2px); } .btn-secondary:active { transform: scale(0.96); } /* Responsive design - iPhone */ @media (max-width: 480px) { body { padding: 12px; } .language-selector { top: 16px; right: 16px; padding: 4px; gap: 4px; } .lang-btn { padding: 8px 10px; font-size: 12px; } .vcard-container { max-width: 100%; } .vcard { border-radius: 28px; } .hero-section { padding: 40px 24px 32px; } .profile-img { width: 120px; height: 120px; } .name { font-size: 28px; } .title { font-size: 14px; } .section { padding: 20px 20px; } .contact-card { padding: 14px; gap: 12px; } .contact-icon-wrapper { width: 40px; height: 40px; min-width: 40px; } .contact-icon { width: 18px; height: 18px; } .contact-value { font-size: 14px; } .social-grid { gap: 10px; } .social-link { height: 56px; } .social-link svg { width: 20px; height: 20px; } .action-section { padding: 16px 20px 24px; gap: 10px; } .btn { padding: 14px 20px; font-size: 14px; } .btn svg { width: 16px; height: 16px; } } /* iPad / Tablet optimization */ @media (min-width: 481px) and (max-width: 1024px) { .vcard-container { max-width: 440px; } .hero-section { padding: 52px 36px 40px; } .profile-img { width: 150px; height: 150px; } .name { font-size: 34px; } .title { font-size: 16px; } } /* Desktop hover effects */ @media (min-width: 1025px) { .vcard { transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); } .vcard:hover { box-shadow: 0 32px 80px rgba(0, 0, 0, 0.8); transform: translateY(-4px); } } /* Complete redesign with Apple-style modern aesthetics */ * { margin: 0; padding: 0; box-sizing: border-box; } :root { --bg-dark: #1a1a1a; --gold: #ab824d; --white: #ffffff; --white-70: rgba(255, 255, 255, 0.7); --white-50: rgba(255, 255, 255, 0.5); --white-10: rgba(255, 255, 255, 0.1); --white-05: rgba(255, 255, 255, 0.05); --card-bg: rgba(30, 30, 30, 0.95); --gold-20: rgba(171, 130, 77, 0.2); --gold-10: rgba(171, 130, 77, 0.1); } body { font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif; background: var(--bg-dark); color: var(--white); min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } /* ------------------------------------------------------- */ /* ⏳ LOADER */ /* ------------------------------------------------------- */ .loader { position: fixed; inset: 0; background: var(--bg-dark); display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 10000; transition: opacity 0.6s ease, visibility 0.6s ease; } .loader.hidden { opacity: 0; visibility: hidden; } .loader-container { position: relative; width: 80px; height: 80px; } .loader-ring { position: absolute; inset: 0; border: 2px solid transparent; border-top-color: var(--gold); border-radius: 50%; animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite; } .loader-ring:nth-child(2) { inset: 10px; border-top-color: var(--gold); opacity: 0.7; animation-delay: -0.5s; } .loader-ring:nth-child(3) { inset: 20px; border-top-color: var(--gold); opacity: 0.4; animation-delay: -1s; } .loader-dot { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 12px; height: 12px; background: var(--gold); border-radius: 50%; animation: pulse 1.5s ease-in-out infinite; } @keyframes spin { 0% { transform: rotate(0deg);} 100% { transform: rotate(360deg);} } @keyframes pulse { 0%,100% { transform: translate(-50%, -50%) scale(1); opacity: 1; } 50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.3; } } .loader-text { margin-top: 30px; color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 3px; animation: fadeInOut 2s ease-in-out infinite; } @keyframes fadeInOut { 0%,100% { opacity: 0.4;} 50% { opacity: 1;} } /* ------------------------------------------------------- */ /* 🌍 LANGUAGE DROPDOWN (INSIDE THE CARD) */ /* ------------------------------------------------------- */ .language-dropdown { position: absolute; top: 22px; right: 22px; z-index: 20; } .lang-trigger { display: flex; align-items: center; gap: 6px; background: #ffffff15; padding: 8px 14px; border-radius: 14px; border: 1px solid #ffffff25; backdrop-filter: blur(8px); cursor: pointer; } .flag-icon { width: 18px; border-radius: 4px; } .chevron { width: 16px; height: 16px; stroke: #fff; stroke-width: 2; } .lang-menu { position: absolute; top: 48px; right: 0; width: 160px; background: #1a1a1a; border: 1px solid #333; border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.6); display: none; padding: 8px; } .language-dropdown.open .lang-menu { display: block; } .lang-option { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 10px; cursor: pointer; font-size: 14px; } .lang-option:hover { background: #ffffff10; } /* ------------------------------------------------------- */ /* 🪪 VCARD */ /* ------------------------------------------------------- */ .vcard-container { width: 100%; max-width: 420px; animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1); } @keyframes fadeInUp { from { opacity: 0; transform: translateY(40px);} to { opacity: 1; transform: translateY(0);} } .vcard { background: var(--card-bg); backdrop-filter: blur(40px); border-radius: 32px; border: 1px solid var(--white-10); overflow: hidden; position: relative; } /* ------------------------------------------------------- */ /* 🎥 HERO VIDEO RESPONSIVE */ /* ------------------------------------------------------- */ .hero-video { position: relative; width: 100%; height: 260px; overflow: hidden; } .hero-video video { width: 100%; height: 100%; object-fit: cover; } .video-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); } /* Centered logo (120px) */ .hero-logo { position: absolute; width: 120px; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 5; } /* ------------------------------------------------------- */ /* 📝 NAME + TITLE */ /* ------------------------------------------------------- */ .name { font-size: 32px; font-weight: 700; text-align: center; margin-top: 16px; } .title { font-size: 16px; text-align: center; color: var(--gold); margin-bottom: 12px; } /* ------------------------------------------------------- */ /* CONTACT SECTIONS */ /* ------------------------------------------------------- */ .section { padding: 24px 24px; } .section-heading { font-size: 11px; font-weight: 800; text-transform: uppercase; color: var(--white-50); margin-bottom: 16px; } .contact-list { display: flex; flex-direction: column; gap: 8px; } .contact-card { display: flex; align-items: center; gap: 14px; padding: 16px; background: rgba(255,255,255,0.03); border: 1px solid var(--white-05); border-radius: 16px; text-decoration: none; } .contact-card:hover { background: var(--gold-10); } /* ------------------------------------------------------- */ /* SOCIAL GRID */ /* ------------------------------------------------------- */ .social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; } .social-link { display: flex; justify-content: center; align-items: center; height: 60px; background: rgba(255,255,255,0.03); border: 1px solid var(--white-05); border-radius: 16px; } /* ------------------------------------------------------- */ /* BUTTONS */ /* ------------------------------------------------------- */ .action-section { padding: 20px 24px 28px; display: flex; gap: 12px; } .btn { flex: 1; padding: 16px 20px; border-radius: 14px; font-weight: 600; cursor: pointer; } .btn-primary { background: var(--gold); color: var(--bg-dark); } /* ------------------------------------------------------- */ /* 📱 RESPONSIVE — IPHONE */ /* ------------------------------------------------------- */ @media (max-width: 480px) { body { padding: 12px; } .hero-video { height: 200px; } .hero-logo { width: 90px; } .lang-trigger { padding: 6px 10px; } } /* ------------------------------------------------------- */ /* 📱📲 RESPONSIVE — IPAD */ /* ------------------------------------------------------- */ @media (min-width: 481px) and (max-width: 1024px) { .hero-video { height: 300px; } .hero-logo { width: 120px; } } /* ------------------------------------------------------- */ /* 🖥️ RESPONSIVE — DESKTOP */ /* ------------------------------------------------------- */ @media (min-width: 1025px) { .hero-video { height: 340px; } .vcard:hover { transform: translateY(-4px); box-shadow: 0 32px 80px rgba(0,0,0,0.8); } }

/* FORCE WHITE TEXT FOR LANGUAGE DROPDOWN */
.lang-trigger span,
.lang-option {
    color: #ffffff !important;
}

.lang-trigger {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important; /* Fix Safari blue text */
}

.lang-option img {
    pointer-events: none;
}

.language-dropdown * {
    color: #ffffff !important;
    text-decoration: none !important;
}
/* Complete redesign with Apple-style modern aesthetics */ * { margin: 0; padding: 0; box-sizing: border-box; } :root { --bg-dark: #1a1a1a; --gold: #ab824d; --white: #ffffff; --white-70: rgba(255, 255, 255, 0.7); --white-50: rgba(255, 255, 255, 0.5); --white-10: rgba(255, 255, 255, 0.1); --white-05: rgba(255, 255, 255, 0.05); --card-bg: rgba(30, 30, 30, 0.95); --gold-20: rgba(171, 130, 77, 0.2); --gold-10: rgba(171, 130, 77, 0.1); } body { font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif; background: var(--bg-dark); color: var(--white); min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } /* New modern loader with dynamic rings */ .loader { position: fixed; inset: 0; background: var(--bg-dark); display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 10000; transition: opacity 0.6s ease, visibility 0.6s ease; } .loader.hidden { opacity: 0; visibility: hidden; } .loader-container { position: relative; width: 80px; height: 80px; } .loader-ring { position: absolute; inset: 0; border: 2px solid transparent; border-top-color: var(--gold); border-radius: 50%; animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite; } .loader-ring:nth-child(2) { inset: 10px; border-top-color: var(--gold); opacity: 0.7; animation-delay: -0.5s; } .loader-ring:nth-child(3) { inset: 20px; border-top-color: var(--gold); opacity: 0.4; animation-delay: -1s; } .loader-dot { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 12px; height: 12px; background: var(--gold); border-radius: 50%; animation: pulse 1.5s ease-in-out infinite; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } @keyframes pulse { 0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; } 50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.3; } } .loader-text { margin-top: 30px; color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 3px; animation: fadeInOut 2s ease-in-out infinite; } @keyframes fadeInOut { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } } /* Prominent language selector */ .language-selector { position: fixed; top: 24px; right: 24px; z-index: 9999; display: flex; gap: 6px; background: var(--card-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 6px; border-radius: 20px; border: 1px solid var(--white-10); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6); } .lang-btn { background: transparent; border: none; color: var(--white-50); font-size: 13px; font-weight: 700; padding: 10px 14px; border-radius: 14px; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); font-family: inherit; letter-spacing: 0.5px; position: relative; } .lang-btn:hover { color: var(--white); background: var(--white-05); } .lang-btn.active { background: var(--gold); color: var(--bg-dark); } /* Completely new card structure */ .vcard-container { width: 100%; max-width: 420px; animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1); } @keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } } .vcard { background: var(--card-bg); backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px); border-radius: 32px; border: 1px solid var(--white-10); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7); overflow: hidden; } /* New hero section with Apple-style photo design */ .hero-section { padding: 48px 32px 36px; text-align: center; position: relative; background: linear-gradient(180deg, var(--gold-10) 0%, transparent 100%); } .photo-wrapper { position: relative; display: inline-block; margin-bottom: 24px; } .photo-bg-effect { position: absolute; inset: -40px; background: radial-gradient(circle, var(--gold-20), transparent 70%); filter: blur(40px); animation: breathe 4s ease-in-out infinite; } @keyframes breathe { 0%, 100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.1); opacity: 1; } } .photo-ring-outer { position: absolute; inset: -6px; background: conic-gradient(from 0deg, var(--gold), transparent, var(--gold)); border-radius: 50%; animation: rotate 8s linear infinite; } .photo-ring-inner { position: absolute; inset: -3px; background: var(--bg-dark); border-radius: 50%; } @keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } .profile-img { position: relative; width: 140px; height: 140px; border-radius: 50%; object-fit: cover; display: block; box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5); transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); } .profile-img:hover { transform: scale(1.05); } .name { font-size: 32px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 8px; color: var(--white); } .title { font-size: 15px; font-weight: 500; color: var(--gold); letter-spacing: 0.3px; } /* Section styling */ .section { padding: 24px 24px; } .section-heading { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--white-50); margin-bottom: 16px; } /* iOS-style contact cards */ .contact-list { display: flex; flex-direction: column; gap: 8px; } .contact-card { display: flex; align-items: center; gap: 14px; padding: 16px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--white-05); border-radius: 16px; text-decoration: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); } .contact-card:hover { background: var(--gold-10); border-color: var(--gold-20); transform: translateX(4px); } .contact-card:active { transform: scale(0.98); } .contact-icon-wrapper { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; min-width: 44px; background: var(--gold-10); border-radius: 12px; } .contact-icon { width: 20px; height: 20px; color: var(--gold); } .contact-info { flex: 1; display: flex; flex-direction: column; gap: 2px; } .contact-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--white-50); } .contact-value { font-size: 15px; font-weight: 600; color: var(--white); } .contact-arrow { width: 18px; height: 18px; color: var(--white-50); opacity: 0; transition: all 0.3s ease; } .contact-card:hover .contact-arrow { opacity: 1; transform: translateX(4px); } /* Modern social grid */ .social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; } .social-link { display: flex; align-items: center; justify-content: center; height: 60px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--white-05); border-radius: 16px; color: var(--gold); text-decoration: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); } .social-link:hover { background: var(--gold-10); border-color: var(--gold-20); transform: translateY(-4px); box-shadow: 0 8px 24px var(--gold-20); } .social-link:active { transform: translateY(-2px); } .social-link svg { width: 22px; height: 22px; } /* Action buttons */ .action-section { padding: 20px 24px 28px; display: flex; gap: 12px; } .btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 24px; border: none; border-radius: 14px; font-size: 15px; font-weight: 600; cursor: pointer; font-family: inherit; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); letter-spacing: 0.2px; } .btn svg { width: 18px; height: 18px; } .btn-primary { background: var(--gold); color: var(--bg-dark); box-shadow: 0 4px 16px rgba(171, 130, 77, 0.4); } .btn-primary:hover { background: #c49a5e; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(171, 130, 77, 0.5); } .btn-primary:active { transform: scale(0.96); } .btn-secondary { background: rgba(255, 255, 255, 0.05); color: var(--white); border: 1px solid var(--white-10); } .btn-secondary:hover { background: var(--gold-10); border-color: var(--gold-20); transform: translateY(-2px); } .btn-secondary:active { transform: scale(0.96); } /* Responsive design - iPhone */ @media (max-width: 480px) { body { padding: 12px; } .language-selector { top: 16px; right: 16px; padding: 4px; gap: 4px; } .lang-btn { padding: 8px 10px; font-size: 12px; } .vcard-container { max-width: 100%; } .vcard { border-radius: 28px; } .hero-section { padding: 40px 24px 32px; } .profile-img { width: 120px; height: 120px; } .name { font-size: 28px; } .title { font-size: 14px; } .section { padding: 20px 20px; } .contact-card { padding: 14px; gap: 12px; } .contact-icon-wrapper { width: 40px; height: 40px; min-width: 40px; } .contact-icon { width: 18px; height: 18px; } .contact-value { font-size: 14px; } .social-grid { gap: 10px; } .social-link { height: 56px; } .social-link svg { width: 20px; height: 20px; } .action-section { padding: 16px 20px 24px; gap: 10px; } .btn { padding: 14px 20px; font-size: 14px; } .btn svg { width: 16px; height: 16px; } } /* iPad / Tablet optimization */ @media (min-width: 481px) and (max-width: 1024px) { .vcard-container { max-width: 440px; } .hero-section { padding: 52px 36px 40px; } .profile-img { width: 150px; height: 150px; } .name { font-size: 34px; } .title { font-size: 16px; } } /* Desktop hover effects */ @media (min-width: 1025px) { .vcard { transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); } .vcard:hover { box-shadow: 0 32px 80px rgba(0, 0, 0, 0.8); transform: translateY(-4px); } } /* Complete redesign with Apple-style modern aesthetics */ * { margin: 0; padding: 0; box-sizing: border-box; } :root { --bg-dark: #1a1a1a; --gold: #ab824d; --white: #ffffff; --white-70: rgba(255, 255, 255, 0.7); --white-50: rgba(255, 255, 255, 0.5); --white-10: rgba(255, 255, 255, 0.1); --white-05: rgba(255, 255, 255, 0.05); --card-bg: rgba(30, 30, 30, 0.95); --gold-20: rgba(171, 130, 77, 0.2); --gold-10: rgba(171, 130, 77, 0.1); } body { font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif; background: var(--bg-dark); color: var(--white); min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } /* ------------------------------------------------------- */ /* ⏳ LOADER */ /* ------------------------------------------------------- */ .loader { position: fixed; inset: 0; background: var(--bg-dark); display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 10000; transition: opacity 0.6s ease, visibility 0.6s ease; } .loader.hidden { opacity: 0; visibility: hidden; } .loader-container { position: relative; width: 80px; height: 80px; } .loader-ring { position: absolute; inset: 0; border: 2px solid transparent; border-top-color: var(--gold); border-radius: 50%; animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite; } .loader-ring:nth-child(2) { inset: 10px; border-top-color: var(--gold); opacity: 0.7; animation-delay: -0.5s; } .loader-ring:nth-child(3) { inset: 20px; border-top-color: var(--gold); opacity: 0.4; animation-delay: -1s; } .loader-dot { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 12px; height: 12px; background: var(--gold); border-radius: 50%; animation: pulse 1.5s ease-in-out infinite; } @keyframes spin { 0% { transform: rotate(0deg);} 100% { transform: rotate(360deg);} } @keyframes pulse { 0%,100% { transform: translate(-50%, -50%) scale(1); opacity: 1; } 50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.3; } } .loader-text { margin-top: 30px; color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 3px; animation: fadeInOut 2s ease-in-out infinite; } @keyframes fadeInOut { 0%,100% { opacity: 0.4;} 50% { opacity: 1;} } /* ------------------------------------------------------- */ /* 🌍 LANGUAGE DROPDOWN (INSIDE THE CARD) */ /* ------------------------------------------------------- */ .language-dropdown { position: absolute; top: 22px; right: 22px; z-index: 20; } .lang-trigger { display: flex; align-items: center; gap: 6px; background: #ffffff15; padding: 8px 14px; border-radius: 14px; border: 1px solid #ffffff25; backdrop-filter: blur(8px); cursor: pointer; } .flag-icon { width: 18px; border-radius: 4px; } .chevron { width: 16px; height: 16px; stroke: #fff; stroke-width: 2; } .lang-menu { position: absolute; top: 48px; right: 0; width: 160px; background: #1a1a1a; border: 1px solid #333; border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.6); display: none; padding: 8px; } .language-dropdown.open .lang-menu { display: block; } .lang-option { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 10px; cursor: pointer; font-size: 14px; } .lang-option:hover { background: #ffffff10; } /* ------------------------------------------------------- */ /* 🪪 VCARD */ /* ------------------------------------------------------- */ .vcard-container { width: 100%; max-width: 420px; animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1); } @keyframes fadeInUp { from { opacity: 0; transform: translateY(40px);} to { opacity: 1; transform: translateY(0);} } .vcard { background: var(--card-bg); backdrop-filter: blur(40px); border-radius: 32px; border: 1px solid var(--white-10); overflow: hidden; position: relative; } /* ------------------------------------------------------- */ /* 🎥 HERO VIDEO RESPONSIVE */ /* ------------------------------------------------------- */ .hero-video { position: relative; width: 100%; height: 260px; overflow: hidden; } .hero-video video { width: 100%; height: 100%; object-fit: cover; } .video-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); } /* Centered logo (120px) */ .hero-logo { position: absolute; width: 120px; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 5; } /* ------------------------------------------------------- */ /* 📝 NAME + TITLE */ /* ------------------------------------------------------- */ .name { font-size: 32px; font-weight: 700; text-align: center; margin-top: 16px; } .title { font-size: 16px; text-align: center; color: var(--gold); margin-bottom: 12px; } /* ------------------------------------------------------- */ /* CONTACT SECTIONS */ /* ------------------------------------------------------- */ .section { padding: 24px 24px; } .section-heading { font-size: 11px; font-weight: 800; text-transform: uppercase; color: var(--white-50); margin-bottom: 16px; } .contact-list { display: flex; flex-direction: column; gap: 8px; } .contact-card { display: flex; align-items: center; gap: 14px; padding: 16px; background: rgba(255,255,255,0.03); border: 1px solid var(--white-05); border-radius: 16px; text-decoration: none; } .contact-card:hover { background: var(--gold-10); } /* ------------------------------------------------------- */ /* SOCIAL GRID */ /* ------------------------------------------------------- */ .social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; } .social-link { display: flex; justify-content: center; align-items: center; height: 60px; background: rgba(255,255,255,0.03); border: 1px solid var(--white-05); border-radius: 16px; } /* ------------------------------------------------------- */ /* BUTTONS */ /* ------------------------------------------------------- */ .action-section { padding: 20px 24px 28px; display: flex; gap: 12px; } .btn { flex: 1; padding: 16px 20px; border-radius: 14px; font-weight: 600; cursor: pointer; } .btn-primary { background: var(--gold); color: var(--bg-dark); } /* ------------------------------------------------------- */ /* 📱 RESPONSIVE — IPHONE */ /* ------------------------------------------------------- */ @media (max-width: 480px) { body { padding: 12px; } .hero-video { height: 200px; } .hero-logo { width: 90px; } .lang-trigger { padding: 6px 10px; } } /* ------------------------------------------------------- */ /* 📱📲 RESPONSIVE — IPAD */ /* ------------------------------------------------------- */ @media (min-width: 481px) and (max-width: 1024px) { .hero-video { height: 300px; } .hero-logo { width: 120px; } } /* ------------------------------------------------------- */ /* 🖥️ RESPONSIVE — DESKTOP */ /* ------------------------------------------------------- */ @media (min-width: 1025px) { .hero-video { height: 340px; } .vcard:hover { transform: translateY(-4px); box-shadow: 0 32px 80px rgba(0,0,0,0.8); } }

.btn-primary svg {
    stroke: #fff !important;
    fill: none !important;  
}

.btn-primary span {
    color: #fff !important;
}