*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
background:#ffffff;
color:#333;
line-height:1.6;
}

/* Container */

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* Header */

header{
background:white;
box-shadow:0 2px 8px rgba(0,0,0,0.1);
position:sticky;
top:0;
z-index:100;
}

header .container{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

.logo{
font-size:28px;
font-weight:bold;
color:#d35400;
}

nav a{
margin-left:20px;
text-decoration:none;
color:#333;
font-weight:600;
}

nav a:hover{
color:#d35400;
}

/* Hero Section */

.hero{
position:relative;
height:90vh;
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

/* Slider */

.slider{
position:absolute;
width:100%;
height:100%;
top:0;
left:0;
z-index:0;
}

.slide{
position:absolute;
width:100%;
height:100%;
background-size:cover;
background-position:center;
opacity:0;
transition:opacity 1s ease-in-out;
}

.slide.active{
opacity:1;
}

/* Dark overlay */

.hero::after{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
z-index:1;
}

/* Hero content */

.hero-content{
position:relative;
z-index:2;
max-width:700px;
}

.hero h2{
font-size:42px;
margin-bottom:10px;
}

.hero h3{
font-size:30px;
margin-bottom:20px;
color:#ffcc70;
}

.hero p{
font-size:18px;
margin-bottom:25px;
}

.hero button{
background:#d35400;
color:white;
border:none;
padding:14px 28px;
font-size:16px;
border-radius:5px;
cursor:pointer;
transition:0.3s;
}

.hero button:hover{
background:#a84300;
}

/* Features */

.features{
padding:80px 20px;
background:#f8f8f8;
text-align:center;
}

.features h2{
font-size:32px;
margin-bottom:40px;
}

.feature-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
max-width:1000px;
margin:auto;
}

.feature-grid div{
background:white;
padding:25px;
border-radius:8px;
box-shadow:0 5px 12px rgba(0,0,0,0.08);
font-weight:600;
}

/* Steps */

.steps{
padding:80px 20px;
text-align:center;
}

.steps h2{
font-size:32px;
margin-bottom:40px;
}

.steps-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:30px;
max-width:900px;
margin:auto;
}

.steps-grid div{
background:#fff7f0;
padding:30px;
border-radius:8px;
box-shadow:0 5px 12px rgba(0,0,0,0.08);
}

.steps-grid h3{
font-size:36px;
color:#d35400;
margin-bottom:10px;
}

/* Gallery */

.gallery{
padding:80px 20px;
background:#fafafa;
text-align:center;
}

.gallery h2{
font-size:32px;
margin-bottom:40px;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
max-width:1100px;
margin:auto;
}

.gallery-grid img{
width:100%;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,0.15);
transition:0.3s;
}

.gallery-grid img:hover{
transform:scale(1.05);
}

/* Footer */

footer{
background:#222;
color:white;
text-align:center;
padding:25px;
margin-top:40px;
}

/* Responsive */

@media(max-width:768px){

.hero h2{
font-size:30px;
}

.hero h3{
font-size:22px;
}

.hero p{
font-size:16px;
}

header .container{
flex-direction:column;
}

nav{
margin-top:10px;
}

nav a{
margin:0 10px;
}

}

/* ========================= */
/* ABOUT PAGE STYLES */
/* ========================= */

.about-section{
padding:80px 0;
max-width:900px;
margin:auto;
}

.about-section h2{
font-size:34px;
margin-bottom:30px;
color:#222;
border-left:6px solid #d35400;
padding-left:15px;
}

.about-section h3{
font-size:24px;
margin-top:40px;
margin-bottom:15px;
color:#2c3e50;
}

.about-section p{
font-size:17px;
margin-bottom:18px;
color:#444;
line-height:1.8;
}

.about-section hr{
border:none;
height:1px;
background:#ddd;
margin:40px 0;
}

.about-section strong{
color:#d35400;
}

/* Highlight block */

.highlight-box{
background:#fff7f0;
border-left:5px solid #d35400;
padding:20px;
margin:30px 0;
font-size:18px;
border-radius:6px;
}

/* Image style */

.story-image{
width:100%;
border-radius:10px;
margin:30px 0;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* Ending line */

.brand-line{
text-align:center;
font-size:26px;
margin-top:60px;
color:#d35400;
font-weight:bold;
}

/* Responsive for about page */

@media(max-width:768px){

.about-section{
width:90%;
}

.about-section h2{
font-size:28px;
}

.about-section h3{
font-size:20px;
}

.about-section p{
font-size:16px;
}

}