/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    overflow-x: hidden;
    background: #000;
}

/* Background */
.fullscreen-bg {
    min-height: 100vh;
    width: 100%;
    position: relative;    
    background-image: url('web-design.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6); 
    z-index: 1;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Navbar */
.navbar {
    padding: 20px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    letter-spacing: 1px;
}

.logo span {
    color: #00d2ff;
}

/* Hero Content */
.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.content-box {
    max-width: 700px;
}

h1 {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 span {
    color: #00d2ff;
}

p {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    margin-bottom: 30px;
    color: #e0e0e0;
    line-height: 1.8;
}

.services-mini {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-weight: 600;
    color: #00d2ff;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Button */
.btn-cta {
    display: inline-block;
    padding: 12px 30px;
    background: #00d2ff;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.btn-cta:hover,
.btn-cta:active {
    background: #fff;
    transform: scale(1.05);
}

/* Footer Styling */
.footer {
    position: relative;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    z-index: 2;
    background: rgba(0,0,0,0.5);
}

.footer p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.e-link {
    color: #00d2ff; 
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.e-link:hover {
    color: #fff;
}

.e-link .u::before { content: "halo"; }
.e-link .at::before { content: "\0040"; }
.e-link .d::before { content: "layananweb.com"; }

/* Responsive */
@media (max-width: 768px) {
    .services-mini { flex-direction: column; gap: 8px; }
    .hero-content { padding: 40px 0; }
}

@media (max-width: 480px) {
    .btn-cta { padding: 10px 20px; }
    .footer p { font-size: 12px; }
}
