/* Socials Page Specific Styles */

.content-section {
    position: relative;
    min-height: 100vh;
    padding: 30vh 0 5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 1;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.9);
    padding-top: 30vh;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
    padding: 0 2rem;
    position: relative;
    z-index: 5;
}

.section-title h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.title-line {
    width: 100%;
    max-width: 800px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 auto;
}

/* Center-text section - full height with centered content */
.center-text {
    height: 100vh;
    position: relative;
    z-index: 1;
    width: 100%;
    opacity: 1;
}

.center-text h1 {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 2px;
    opacity: 0.9;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* Main layout styling */
main {
    padding: 0 8%;
    display: block;
    height: auto;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

/* Socials container styling */
.socials-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
    position: relative;
}

/* Divider line */
.divider-line {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

/* Email section */
.email-section {
    text-align: center;
    margin: 3rem 0;
}

.email-address {
    font-family: 'EB Garamond', serif;
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin: 0;
}

.email-address a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
}

.email-address a:hover {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.8);
}

/* Social media grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 800px;
    margin: 3rem auto 2rem;
}

.social-grid-two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 550px;
}

.social-grid-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 800px;
    margin: 2rem auto 3rem;
}

.social-item {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: transparent;
    font-size: 0;
    line-height: 0;
}

.social-item:hover {
    transform: translateY(-8px);
}

/* Adjust spacing between the grids for balance */
.social-grid + .social-grid-bottom {
    margin-top: 4rem;
}

.social-icon {
    width: 140px;
    height: 140px;
    object-fit: contain;
    display: block;
    text-indent: -9999px;
}

/* Specific icon sizing */
.social-icon.spotify {
    width: 100px;
}

.social-icon.instagram {
    width: 100px;
}

.social-icon.youtube {
    width: 180px;
}

.social-icon.tiktok {
    width: 140px;
}

.social-icon.twitter {
    width: 100px;
}

.social-icon.linkedin {
    width: 110px;
}

.social-icon.discord {
    width: 120px;
}

.social-icon.reddit {
    width: 120px;
}

.social-icon.soundcloud {
    width: 100px; /* Reduced from the default size to match other circular icons */
}

.social-icon.fiverr {
    width: 110px;
}

/* Build with Me styling */
.build-with-me {
    text-align: center;
    margin: 3rem 0 2rem;
}

.build-with-me p {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    letter-spacing: 1px;
    line-height: 1.4;
    font-weight: 300;
}

/* Responsive styles */
@media (max-width: 992px) {
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .social-grid-bottom {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .social-icon {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .social-icon {
        width: 100px;
        height: 100px;
    }
    
    .category-title {
        font-size: 1.8rem;
    }
    
    .email-address {
        font-size: 1.1rem;
    }
    
    .build-with-me p {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .social-grid, .social-grid-two {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .social-icon {
        width: 100px;
        height: 100px;
    }
    
    .category-title {
        font-size: 1.8rem;
    }
    
    .email-address {
        font-size: 1.1rem;
    }
    
    .build-with-me p {
        font-size: 1.3rem;
    }
} 

/* Special rule for the hidden logo on socials page */
.hidden-logo.blue-glow {
    opacity: 0.05; /* Slightly more visible than others */
    width: 35px; /* Larger size */
    height: 35px; /* Larger size */
}

/* Ownership text in bottom corner */
.ownership-text {
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #1a2332;
    z-index: 1000;
    text-align: right;
}

.ownership-text a {
    color: #1a2332;
    text-decoration: none;
} 