*{
margin:0;
padding:0;
box-sizing:border-box;
font-family: Arial, Helvetica, sans-serif;
}

body{
background:#0b0b0b;
color:#ffffff;
line-height:1.6;
}

/* =========================
   NAVBAR
========================= */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
border-bottom:1px solid #333;
background:#111;
}

.logo{
font-size:1.3rem;
font-weight:bold;
color:#ffffff;
}

nav a{
margin-left:25px;
text-decoration:none;
color:#ffffff;
font-weight:500;
transition:0.3s;
}

nav a:hover{
opacity:.6;
}

/* =========================
   HERO (HOME PAGE)
========================= */

.hero{
height:90vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;

background-image:url("images/videoportfoliobackground.png");
background-size:cover;
background-position:center;
background-repeat:no-repeat;

padding:20px;
}

.hero h1{
    font-size:3rem;
    margin-bottom:15px;
    text-shadow: 5px 5px 8px rgba(0,0,0,0.7);
    color:#FF0000;
    -webkit-text-stroke: 10px white;
}

.hero p{
    font-size:1.2rem;
    margin-bottom:25px;
    max-width:600px;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
    color:#FF0000;
}

/* BUTTON */

.btn{
background:#ffffff;
color:#000000;
padding:12px 25px;
text-decoration:none;
border-radius:4px;
transition:0.3s;
}

.btn:hover{
background:#cccccc;
}

/* =========================
   ABOUT PAGE
========================= */

.about h1{
margin-bottom:40px;
font-size:2.5rem;
}

.about-content{
max-width:800px;
margin:auto;
background:#111; /* same as navbar/footer */
padding:40px;
border-radius:8px;
box-shadow:0 5px 20px rgba(0,0,0,0.7);
}

.about-content p{
margin-bottom:20px;
color:#ccc;
line-height:1.8;
}
/* =========================
   PORTFOLIO PAGE
========================= */

.portfolio{
padding:80px 10%;
}

.portfolio h1,
.portfolio h2{
text-align:center;
margin-bottom:40px;
}

/* VIDEO GRID */

.video-grid{
display:flex;
flex-wrap:wrap;
gap:30px;
justify-content:center;
margin:30px;
}

/* VIDEO CARD */

.video-card{
background:#1a1a1a;
border-radius:8px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,0.7);
transition:0.3s;
}

.video-card:hover{
transform:translateY(-5px);
box-shadow:0 10px 30px rgba(0,0,0,0.9);
}

.video-card iframe{
width:100%;
height:200px;
border:none;
}

.video-card h3{
padding:15px;
font-size:1rem;
color:#fff;
}

/* =========================
   CONTACT PAGE
========================= */

.contact{
padding:80px 20%;
text-align:center;
}

.contact h1{
margin-bottom:30px;
}

/* FORM */

form{
max-width:500px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

input,
textarea{
padding:12px;
border:1px solid #444;
border-radius:4px;
font-size:1rem;
background:#1a1a1a;
color:#ffffff;
}

textarea{
min-height:120px;
resize:vertical;
}

button{
background:#ffffff;
color:#000;
padding:12px;
border:none;
border-radius:4px;
cursor:pointer;
font-size:1rem;
transition:0.3s;
}

button:hover{
background:#cccccc;
}

/* =========================
   FOOTER
========================= */

footer{
text-align:center;
padding:30px;
border-top:1px solid #333;
margin-top:40px;
font-size:0.9rem;
color:#aaa;
background:#111;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width:768px){

header{
flex-direction:column;
margin:10px;
}

nav a{
margin:0 10px;
}

.hero h1{
font-size:2.2rem;
}

.about{
padding:40px 10%;
}

.contact{
padding:60px 10%;
}

.about-row{
flex-direction:column;
}

}
/* =========================
   FAQ PAGE
========================= */
.faq{
    padding:80px 20px;
    background:#0b0b0b;
    min-height:80vh;

    max-width:900px;   /* controls page width */
    margin:0 auto;     /* ðŸ‘ˆ centers the whole section */
}

.faq h1{
    text-align:center;
    margin-bottom:40px;
}

.faq-item{
    width:100%;
    margin-bottom:15px;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.7);
}

.faq-item:hover{
transform:translateY(-5px);
box-shadow:0 10px 30px rgba(0,0,0,0.9);
}

.faq-item h3{
margin-bottom:10px;
}

.faq-item p{
color:#ccc;
}
/* =========================
   FAQ ACCORDION
========================= */

.faq{
    padding:80px 20px;
    background:#0b0b0b;
    min-height:80vh;

    max-width:900px;   /* controls page width */
    margin:0 auto;     /* ðŸ‘ˆ centers the whole section */
}

.faq h1{
    text-align:center;
    margin-bottom:40px;
}

.faq-item{
    width:100%;
    margin-bottom:15px;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.7);
}

/* QUESTION BUTTON */

.faq-question{
width:100%;
background:#1a1a1a;
color:#fff;
padding:18px;
text-align:center; /* ðŸ‘ˆ centers text */
border:none;
font-size:1rem;
cursor:pointer;
}

.faq-question:hover{
background:#222;
}

/* ANSWER (hidden by default) */

.faq-answer{
max-height:0;
overflow:hidden;
background:#111;
transition:max-height 0.4s ease;
}

.faq-answer p{
padding:15px 18px;
color:#ccc;
text-align:center; /* ðŸ‘ˆ centers text */
}

/* ACTIVE STATE */

.faq-item.active .faq-answer{
max-height:200px; /* enough for content */
}
/* =========================
   ABOUT WITH MEDIA
========================= */

.about{
background:#0b0b0b;
margin:0 auto;
padding:80px 10%;
max-width:1200px;
}

.about h1{
margin-bottom:60px;
}

.about-row{
    display:flex;
    gap:40px;
    align-items:center;
    justify-content:space-between;
    margin-bottom:60px;
    width:100%; /* 👈 ADD THIS */
}

/* TEXT */

.about-text{
    flex:1;
    font-size:1.1rem;
    line-height:1.8;
    color:#ccc;
    min-width:300px;
}

/* MEDIA */

.about-media{
    flex:1;
    min-width:300px;
}

.about-media img{
    max-width:500px;   /* ðŸ‘ˆ key control */
    border-radius:8px;
    box-shadow:0 5px 20px rgba(0,0,0,0.7);
}

.about-media iframe{
    width:100%;
    height:300px;
    border:none;
    border-radius:8px;
}

/* VIDEO HEIGHT */

.about-media iframe{
height:300px;
border:none;
}

.about-container{
    max-width:1200px;
    margin:0 auto;
}