*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    background:linear-gradient(90deg,#2563eb,#1d4ed8);
    color:#28c4e3;
}

/* Navigation */


.logo{
    font-size:28px;
    font-weight:bold;
    color:white;
}

nav ul{
    display:flex;
    list-style:none;
    gap:25px;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:bold;
}

nav a:hover{
    color:#ffd700;
}

nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 60px;
    background:#0f172a;
    z-index:1000;
}


/* HERO SECTION  BACKGROUND */
.hero{
    position:relative;
    width:100%;
    height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;

    background:
    linear-gradient(rgba(37,99,235,.65),rgba(59,130,246,.65)),
    url("../images/camera-bg.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero-content{

    max-width:700px;
    padding:20px;

}


.hero-content h1{
    font-size:70px;
    font-weight:700;
    color:#fff;
    text-shadow:0 4px 12px rgba(0,0,0,.8);
}

.hero-content p{
    font-size:24px;
    color:#fff;
    text-shadow:0 2px 8px rgba(0,0,0,.8);
}


/* BUTTON */

.btn{
    display:inline-block;
    padding:16px 40px;
    border-radius:50px;
    background:#ffffff;
    color:#3c1dd8;
    text-decoration:none;
    font-size:18px;
    font-weight:bold;
    transition:.3s;
}

.btn:hover{
    background:#2563eb;
    color:#fff;
    transform:translateY(-3px);
}



/* SECTIONS */

.section{

    padding:80px;

}


.section h2{

    text-align:center;

    margin-bottom:40px;

    font-size:42px;

}



/* CAMERA CARDS */

.cards{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}



.card{

    background:white;

    border-radius:15px;

    overflow:hidden;

    box-shadow:
    0 10px 20px rgba(0,0,0,.1);

    transition:.3s;

}



.card:hover{

    transform:translateY(-10px);

}



.card img{

    width:100%;

    height:220px;

    object-fit:cover;

}



.card-body{

    padding:20px;

}



.card-body h3{

    margin-bottom:10px;

}



.price{

    font-size:22px;

    font-weight:bold;

    color:#2563eb;

    margin:10px 0;

}



/* FOOTER */

footer{

    background:#259ceb;

    color:white;

    text-align:center;

    padding:30px;

    margin-top:50px;

}

.available{
    color:green;
    font-weight:bold;
}


.reserved{
    color:red;
    font-weight:bold;
}


/* FEATURES */

.features{

    padding:80px;
    background:white;

}


.feature-container{

    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;

}


.feature-box{

    width:300px;
    padding:30px;
    background:#f4f7fb;
    border-radius:15px;
    text-align:center;

    box-shadow:0 5px 15px rgba(0,0,0,.1);

}


.feature-box h3{

    margin-bottom:15px;
    color:#2563eb;

}





/* CTA */

.cta{

    padding:80px;
    text-align:center;

    background:#25bdeb;
    color:white;

}


.cta h2{

    font-size:40px;
    margin-bottom:20px;

}


.cta p{

    font-size:20px;
    margin-bottom:30px;

}

/* KEEP FOOTER AT BOTTOM */

.dashboard-body{

    min-height:100vh;

    display:flex;

    flex-direction:column;

}


.dashboard{

    flex:1;

    padding:120px 80px 50px;

    background:#f4f7fb;

}




/* WELCOME BOX */


.welcome-box{

    background:linear-gradient(135deg,#25bdeb,#2563eb);

    color:white;

    padding:50px;

    border-radius:25px;

    text-align:center;

    box-shadow:0 15px 30px rgba(0,0,0,.15);

}



.welcome-box h1{

    font-size:40px;

    margin-bottom:15px;

}


.welcome-box p{

    font-size:20px;

    margin-bottom:30px;

}



/* DASHBOARD CARDS */


.dashboard-cards{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

    margin-top:50px;

}



.dash-card{

    background:white;

    padding:35px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.1);

    transition:.3s;

}



.dash-card:hover{

    transform:translateY(-10px);

}



.dash-card h2{

    font-size:45px;

}



.dash-card h3{

    margin:15px 0;

    color:#2563eb;

}



.dash-card p{

    color:#666;

    line-height:1.6;

    margin-bottom:20px;

}



.dash-card a{

    text-decoration:none;

    color:#2563eb;

    font-weight:bold;

}



/* FOOTER */


footer{

    margin-top:auto;

}

/* ___

/*=========================
Dashboard
=========================*/

.hero-btn{
    display:inline-block;
    padding:16px 40px;
    border-radius:50px;
    background:#fff;
    color:#2563eb;
    text-decoration:none;
    font-size:18px;
    font-weight:bold;
    transition:.3s;
}
.hero-btn:hover{
    background:#2563eb;
    color:#fff;
    transform:translateY(-3px);
}

/* Login */
.login-page{
    min-height:calc(100vh - 140px);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px 15px;
    background:linear-gradient(135deg,#4f8ef7,#6f42c1);
}
.login-card{
    background:#fff;
    border-radius:20px;
    padding:45px;
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}
.login-icon{
    width:90px;height:90px;margin:0 auto 20px;
    border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    background:linear-gradient(135deg,#4f8ef7,#6f42c1);
    color:#fff;font-size:40px;
}
.btn-login{
    height:52px;border:none;border-radius:12px;
    background:linear-gradient(135deg,#4f8ef7,#6f42c1);
    color:#fff;font-weight:700;
}

/* Dashboard */
.dashboard-page{
    background:#f4f7fc;
    min-height:100vh;
}
.dashboard-header{text-align:center;margin-bottom:40px;}
.dashboard-header h1{font-size:2.5rem;font-weight:700;}

.dashboard-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}
.dashboard-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}
.card-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    margin:0 auto 20px;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:34px;
}
.blue{background:#3b82f6;}
.green{background:#22c55e;}
.red{background:#ef4444;}

.dashboard-card h4{
    font-size:28px;
    font-weight:700;
    margin:15px 0;
}
.dashboard-card p{
    color:#666;
    line-height:1.7;
    min-height:70px;
}
.dashboard-card .btn{
    border-radius:50px;
    padding:12px;
    font-weight:700;
}
.about{
    padding:120px 80px;
    background:#f4f7fb;
}

.about .container{
    max-width:1000px;
    margin:auto;
}

.about h1{
    font-size:48px;
    color:#1e3a8a;
    margin-bottom:25px;
    text-align:center;
}

.about h2{
    margin-top:40px;
    margin-bottom:20px;
    color:#2563eb;
}

.about p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:20px;
    color:#444;
    text-align:justify;
}

.about ul{
    margin-left:25px;
    line-height:2;
    font-size:18px;
}

.about li{
    margin-bottom:10px;
}


/* Footer */
html,body{min-height:100%;}
body{display:flex;flex-direction:column;}
footer{margin-top:auto;}
