/* Reset e base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #121212;
    color: white;
    overflow-x: hidden;
}

/* Mobile Container */
.mobile-container {
    max-width: 480px;
    margin: 0 auto;
    background: #1a1a1a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.profile-container {
    padding: 24px 8px;
    position: sticky;
    top: 0;
    z-index: 1;
    transition: transform 0.1s ease-out;
}


/* Profile Card */
.profile-card {
    text-align: center;
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    background-image: url('./media/images/blurred-dadra-foto.png'); 
    background-size: cover;
    border-radius: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;   
}


.profile-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.profile-info h1 {
    font-style: normal;
    font-weight: 400;
    font-size: 3rem;
    line-height: 48px;
    text-align: center;
    letter-spacing: -0.05em;
    color: #FFFFFF;
    text-shadow: -1px 2px 3px rgba(1, 1, 1, 0.1);
}

.subtitle {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 300;
    text-shadow: -1px 2px 3px rgba(1, 1, 1, 0.1);
    text-align: left;
}

.profile-details {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    align-items: center;
    --contact-height: 72px;
}

.profile-details a {
    text-decoration: none;
   
}


.instagram-icon-top {
    width: var(--contact-height);
    height: var(--contact-height);
    object-fit: cover;
    filter: invert(1)
}


.contact-btn {
    background: #2A2A2A;
    box-shadow: inset 0px -3px 4px #d8d8d832;
    border-radius: 16px;
    color: #fafafa;
    flex-grow: 1;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.44rem;
    font-weight: 100;
    cursor: pointer;
    height: var(--contact-height);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border: none;

}

.contact-btn:hover {
    background: rgb(26, 26, 26);
}

.swipe-indicator {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    opacity: 0.7;
    font: 1.25rem 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 100;
}

.arrow-up {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid white;
    margin-bottom: 5px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.details-container {
    display: flex;
    flex-direction: column;
    background-color: #00000031;
    border-radius: 40px 40px 0 0;
    padding: 32px 16px;
    padding-bottom: 0px;
    position: relative;
    z-index: 3;
    backdrop-filter: blur(30px);
    color: white;
}

/* Skills Section */
.skills-section {
    text-align: flex-start;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px;
}

.skills-section h2 {
    font-size: 2.25rem;
    font-weight: 300;
    font: 900 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.skills-grid {
    display: flex;
    flex-direction: row;
    gap: 8px;
    width: 100%;
}

.skill-item {
    /* Auto layout */
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: center;
    padding: 20px 8px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    flex: 1;
    position: relative;
}


.skill-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skill-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.skill-item span {
    font-size: 1rem;
    text-align: center;
    font-weight: 100;
}

/* Contacts Section */
.contacts-section {
    text-align: flex-start;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px;
}

.contacts-section h2 {
    font-size: 2.25rem;
    font-weight: 300;
    font: 900 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}


.contact-item a {
    text-decoration: none;
    box-shadow: inset 0 -1px 0 0 #f9f9f9;
    font-weight: 100;
    font-size: 5vw;
    color: white;
}

/* Social Section */
.social-section {
    text-align: flex-start;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-section h2 {
    font-size: 2.25rem;
    font-weight: 300;
    font: 900 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.social-links {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
}

.social-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.social-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo Section */
.logo-section {
    padding: 40px 20px;
    text-align: center;
}

.dadra-logo {
    width: 100%;
    height: auto;
}

