/* Services 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;
}

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

/* NowBuilds Showcase */
.nowbuilds-showcase {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem;
    position: relative;
}

.check-here-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px #ff0000, 0 0 40px #ff0000, 0 0 60px #ff0000;
    animation: redGlow 2s ease-in-out infinite alternate;
}

@keyframes redGlow {
    from {
        text-shadow: 0 0 20px #ff0000, 0 0 40px #ff0000, 0 0 60px #ff0000;
    }
    to {
        text-shadow: 0 0 30px #ff0000, 0 0 60px #ff0000, 0 0 90px #ff0000;
    }
}

.nowbuilds-link {
    display: inline-block;
    transition: transform 0.3s ease, filter 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.nowbuilds-link:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.5);
}

.nowbuilds-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

/* Larger, more prominent NowBuilds showcase */
.nowbuilds-showcase-prominent {
    text-align: center;
    margin: 5rem 0;
    padding: 3rem 2rem;
    position: relative;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.05), transparent 70%);
    border-radius: 25px;
}

.check-here-text-large {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    text-shadow: 0 0 30px #ff0000, 0 0 60px #ff0000, 0 0 90px #ff0000;
    animation: redGlowLarge 2s ease-in-out infinite alternate;
}

@keyframes redGlowLarge {
    from {
        text-shadow: 0 0 30px #ff0000, 0 0 60px #ff0000, 0 0 90px #ff0000;
        transform: scale(1);
    }
    to {
        text-shadow: 0 0 40px #ff0000, 0 0 80px #ff0000, 0 0 120px #ff0000;
        transform: scale(1.02);
    }
}

.nowbuilds-link-large {
    display: inline-block;
    transition: transform 0.4s ease, filter 0.4s ease;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.4);
}

.nowbuilds-link-large:hover {
    transform: scale(1.08);
    filter: brightness(1.15);
    box-shadow: 0 30px 80px rgba(255, 0, 0, 0.6);
}

.nowbuilds-image-large {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 20px;
    transition: all 0.4s ease;
}

/* Mobile responsiveness for large showcase */
@media (max-width: 768px) {
    .check-here-text-large {
        font-size: 1.8rem;
        letter-spacing: 2px;
        margin-bottom: 2rem;
    }
    
    .nowbuilds-image-large {
        max-width: 90%;
    }
    
    .nowbuilds-showcase-prominent {
        margin: 3rem 0;
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .check-here-text-large {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    .nowbuilds-link-large:hover {
        transform: scale(1.05);
    }
}

/* About section styling */
.about-section {
    margin-bottom: 4rem;
}

.section-subtitle {
    font-family: 'EB Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.about-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.highlight {
    font-style: italic;
    color: #fff;
    font-weight: 500;
}

/* Services section styling */
.services-section {
    margin-bottom: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.services-header {
    margin-bottom: 2rem;
}

.services-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.services-list {
    flex: 1;
    min-width: 280px;
}

.services-list h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.services-list ul {
    list-style-type: none;
    padding: 0;
}

.services-list li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.services-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #fff;
}

.services-video {
    flex: 1;
    min-width: 280px;
}

.video-container {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 8px;
    overflow: hidden;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #111;
    color: rgba(255, 255, 255, 0.7);
}

/* Tech services grid */
.tech-services-grid {
    display: flex;
    gap: 3rem;
}

.tech-services-grid ul {
    flex: 1;
}

/* Deeper dive section */
.deeper-dive {
    margin-top: 3rem;
    text-align: center;
}

.deeper-dive p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.dive-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    color: #fff;
    background-color: rgba(40, 40, 40, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.dive-button:hover {
    background-color: rgba(60, 60, 60, 0.7);
    transform: translateY(-2px);
}

/* Contact section */
.contact-section {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.contact-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #a8b8ff;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

.contact-email {
    font-family: 'EB Garamond', serif;
    font-size: 1.3rem;
    color: #e8bf76;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.contact-email:hover {
    color: #ffda9e;
}

.socials-button {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-decoration: none;
    color: #e3e3e3;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: 0;
    text-transform: lowercase;
}

.socials-button:hover {
    background-color: rgba(40, 40, 40, 0.5);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    transform: translateY(-1px);
}

/* Tech links styling */
.tech-links {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
    gap: 3rem;
    flex-wrap: wrap;
}

.github-link, .portfolio-link {
    text-decoration: none;
    transition: all 0.3s ease;
}

.github-logo {
    height: 60px;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.github-link:hover .github-logo {
    transform: translateY(-4px);
    opacity: 1;
}

.portfolio-link {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 5px;
}

.portfolio-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.portfolio-link:hover::after {
    width: 100%;
}

.fiverr-link {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    background-color: rgba(29, 191, 115, 0.2);
    color: #1dbf73;
    border: 1px solid rgba(29, 191, 115, 0.6);
    transition: all 0.3s ease;
}

.fiverr-link:hover {
    background-color: rgba(29, 191, 115, 0.3);
    transform: translateY(-4px);
}

.fiverr-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* Music platforms styling */
.music-platforms {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 2rem;
}

.platform-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.platform-link.spotify {
    background-color: rgba(30, 215, 96, 0.2);
    color: #1ed760;
    border: 1px solid rgba(30, 215, 96, 0.4);
}

.platform-link.spotify:hover {
    background-color: rgba(30, 215, 96, 0.3);
    transform: translateY(-2px);
}

.platform-link.youtube {
    background-color: rgba(255, 0, 0, 0.2);
    color: #ff0000;
    border: 1px solid rgba(255, 0, 0, 0.4);
}

.platform-link.youtube:hover {
    background-color: rgba(255, 0, 0, 0.3);
    transform: translateY(-2px);
}

.platform-link.soundcloud {
    background-color: rgba(255, 85, 0, 0.2);
    color: #ff5500;
    border: 1px solid rgba(255, 85, 0, 0.4);
}

.platform-link.soundcloud:hover {
    background-color: rgba(255, 85, 0, 0.3);
    transform: translateY(-2px);
}

/* Responsive styles */
@media (max-width: 768px) {
    .services-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .tech-services-grid {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-subtitle {
        font-size: 1.8rem;
    }
    
    .about-content p {
        font-size: 0.95rem;
    }
    
    .tech-links {
        flex-direction: column;
        gap: 3rem;
    }
    
    .github-logo {
        height: 55px;
    }
    
    .portfolio-link {
        font-size: 2rem;
    }
    
    .fiverr-link {
        font-size: 1.1rem;
    }
    
    .fiverr-container {
        margin-top: 1.5rem;
    }
    
    .contact-email {
        font-size: 1.1rem;
    }
    
    .socials-button {
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
    }
    
    .music-platforms {
        flex-direction: column;
        gap: 1rem;
    }
    
    .platform-link {
        width: 180px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding-top: 25vh;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.6rem;
    }
    
    .deeper-dive p {
        font-size: 0.75rem;
    }
    
    .dive-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .contact-text {
        font-size: 1.1rem;
    }
    
    .contact-email {
        font-size: 1rem;
    }
    
    .github-logo {
        height: 50px;
    }
    
    .portfolio-link {
        font-size: 1.8rem;
    }
    
    .fiverr-link {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
    
    .fiverr-container {
        margin-top: 1.2rem;
    }
    
    .platform-link {
        width: 160px;
        font-size: 0.8rem;
    }
} 