/* === Reset & Globals === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background: #ffffff;
    color: #eee;
    scroll-behavior: smooth;
}

section {
    margin-bottom: 4rem;
}

.section-divider {
    width:100%;
    height: 3px;
    background-color: #EE8131;
    border: none;
    border-radius: 2px;
    box-shadow: 0 0 8px #EE8131;
    margin-bottom: 150px;
    margin-top: 100px;
}

/* === Logo with Typing Effect (JS-Only Now) === */
.logo {
    grid-column: span 3;
    text-align: center;
    font-size: 8.5rem;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    margin-top: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.logo .orange {
    color: #EE8131;
}

.logo .grey {
    color: #888;
}

.logo .cursor {
    color: #EE8131;
    font-size: 1.2em;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
/* === Navigation === */
nav {
    position: sticky;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    padding: 1rem 0;
    background: rgba(30, 30, 30, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

nav a {
    font-family: 'Orbitron', sans-serif;
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #EE8131;
}

/* === Section Title === */
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 2.5rem;
    color: #EE8131;
}

/* === Services Layout === */

#services{
    margin-bottom: 40px;
}


.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
}

.services-container h3{
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    text-align: center;

}

.service-box {
    background: linear-gradient(to bottom right, #111, #222);
    color: white;
    padding: 2.5rem;
    border-radius: 1rem;
    flex: 1 1 360px;
    max-width: 420px;
    box-shadow: 0 0 12px rgba(255, 102, 0, 0.4);
    transition: transform 0.3s ease;
    border: 1px solid #EE8131;
}

.service-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px #EE8131;
}

.service-box h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    color: white;
}

.service-box h2 i {
    color: #EE8131;
    font-size: 1.3em;
}

.service-box p,
.service-box ul li {
    color: white;
    font-size: 1.05rem;
}

.service-box ul {
    list-style: none;
    padding-left: 0;
}

.service-box ul li {
    margin-bottom: 0.6rem;
    font-weight: 500;
    position: relative;
    padding-left: 1.5rem;
}

.service-box ul li::before {
    content: '\2022';
    color: #EE8131;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

.service-box h2 {
    position: sticky;
    top: 2.5rem; /* or adjust to match your nav height */
    background: #545454;
    z-index: 10;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
/* === Contact Boxes === */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1300px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
}

.contact-box {
    background: linear-gradient(to bottom right, #111, #222);
    color: white;
    padding: 2.5rem;
    border-radius: 1rem;
    flex: 1 1 360px;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 0 12px rgba(255, 102, 0, 0.4);
    border: 1px solid #EE8131;
}

.contact-box:hover {
    box-shadow: 0 0 20px #EE8131;
}

.contact-box h2,
.contact-box h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.email-button-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
}

.contact-email-button {
    background-color: #EE8131;
    color: white;
    font-weight: bold;
    padding: 0.8rem 1.6rem;
    font-size: 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.contact-email-button:hover {
    background-color: #ff9a4c;
    transform: translateY(-3px);
}

.clipboard-button {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 0.8rem;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s ease, transform 0.2s ease;
}

.clipboard-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.copy-feedback {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #222;
    color: white;
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
    z-index: 10;
}

.copy-feedback.show {
    opacity: 1;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    font-size: 4rem;
}

.social-icons a {
    color: #EE8131;
    transition: transform 0.2s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
    gap: 0.8rem;
}

.newsletter-form input {
    padding: 0.7rem 1rem;
    border-radius: 0.5rem;
    border: none;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
    background: #fff;
    color: #222;
}

.newsletter-form button {
    background-color: #EE8131;
    color: white;
    font-weight: bold;
    padding: 0.7rem 1.4rem;
    font-size: 1rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.newsletter-form button:hover {
    background-color: #ff9a4c;
    transform: translateY(-2px);
}

/* === Wallpapers === */
.wallpaper-banner {
    display: block;
    width: 100%;
    max-width: 1260px;
    margin: 0 auto 3rem;
    border-radius: 1rem;
    box-shadow: 0 0 12px rgba(255, 102, 0, 0.4);
    border: 1px solid #EE8131;
}

.wallpapers-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
}

.wallpaper-box {
    background: linear-gradient(to bottom right, #111, #222);
    padding: 2rem;
    border-radius: 1rem;
    max-width: 420px;
    flex: 1 1 360px;
    text-align: center;
    box-shadow: 0 0 12px rgba(255, 102, 0, 0.4);
    border: 1px solid #EE8131;
    transition: transform 0.3s ease;
}

.wallpaper-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px #EE8131;
}

.wallpaper-image {
    width: 100%;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

.wallpaper-label {
    font-family: 'Orbitron', sans-serif;
    color: #EE8131;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.service-box,
.contact-box,
.wallpaper-box {
    background: #545454;
}

/* === Footer === */
footer {
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.8rem;
    color: #999;
    background: #ffffff;
}

/* === Responsive Fixes === */
@media (max-width: 768px) {
    .logo {
        font-size: 3rem;
        flex-direction: row;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0.8rem 1rem;
    }

    nav a {
        font-size: 1rem;
        margin: 0.5rem;
    }

    .services-container,
    .wallpapers-container,
    .contact-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-box,
    .wallpaper-box,
    .contact-box {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        flex-direction: column;
        align-items: center;
    }

    .contact-box {
        width: 90%;
        max-width: 400px;
    }

    .email-button-row {
        flex-direction: column;
        gap: 0.8rem;
    }

    .clipboard-button {
        padding: 0.7rem 0.9rem;
        font-size: 1.1rem;
    }

    .social-icons {
        flex-wrap: wrap;
        gap: 2rem;
        font-size: 3.2rem;
        padding: 0 1rem;
    }

    .social-icons a {
        flex: 1 1 20%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hide-on-mobile {
        display: none;
    }
}

