/* Decorating Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}


/* Background overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/Decorating_Rightpaint_Intro.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: -1;
}

.navbar {
    padding: 15px;
    position: sticky;
    margin-top: 15px;
    display: flex;
    gap: 15px;
    z-index: 100;
}

.nav-link {
    margin-top: 5px;
    font-family: 'DC Sans', sans-serif;
    background-color: rgba(241, 80, 5, 0.8);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(77, 2, 2, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-link:hover {
    background-color: rgba(92, 13, 3, 0.95);
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    border-style: glow( 5px 5px 10px rgba(255, 255, 255, 0.6) );
}

.content {
    font-family: 'DC Sans', sans-serif;
    padding: 100px 20px 50px 20px;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 80px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    opacity: 0.6;
    
}

h1 {
    font-family: 'DC Sans', sans-serif;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-size: 2.5rem;
    text-align: center;
    border-bottom: 3px solid #667eea;
    padding-bottom: 10px;
    font-weight: bolder;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 1px 1px 2px rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

h2 {
    font-family: 'DC Sans', sans-serif;
    color: #2c3e50;
    margin: 30px 0 15px 0;
    font-size: 1.8rem;
    font-weight: bolder;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6), 0px 0px 2px rgba(255, 255, 255, 0.7);
}

h3 {
    font-family: 'DC Sans', sans-serif;
    color: #4a5bcc;
    margin: 20px 0 10px 0;
    font-size: 1.4rem;
    font-weight: bolder;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5), 0px 0px 1px rgba(255, 255, 255, 0.6);
}

p {
    font-family: 'DC Sans', sans-serif;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1.1rem;
    text-align: justify;
    color: #2c3e50;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4), 0px 0px 1px rgba(255, 255, 255, 0.8);
}

section {
    font-family: 'DC Sans', sans-serif;
    margin: 30px 0;
    padding: 20px;
    background-color: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
    border-left: 4px solid #667eea;

}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 10px;
        margin-top: 10px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        margin: 5px;
        padding: 12px 16px;
        font-size: 14px;
        min-height: 44px;
    }
    
    .content {
        margin: 10px;
        padding: 15px;
        margin-top: 20px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    h2 {
        font-size: 1.5em;
    }
    
    h3 {
        font-size: 1.2em;
    }
    
    section {
        margin: 15px 0;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .navbar {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-link {
        width: 90%;
        margin: 3px 0;
        text-align: center;
    }
    
    .content {
        margin: 5px;
        padding: 10px;
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    h2 {
        font-size: 1.3em;
    }
    
    p, li {
        font-size: 16px;
        line-height: 1.5;
    }
    
    section {
        margin: 10px 0;
        padding: 10px;
    }
}

ul {
    margin-left: 20px;
}

li {
    font-family: 'DC Sans', sans-serif;
    margin-bottom: 8px;
    line-height: 1.5;
    font-size: 1rem;
    color: #34495e;
    font-weight: 600;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3), 0px 0px 1px rgba(255, 255, 255, 0.7);
}
