/* ===== GLOBAL BACKGROUND ===== */ 
body{
margin:0;
font-family:Arial, sans-serif;
color:white;

/* Slightly brighter, no dull effect */
background:
linear-gradient(rgba(135,206,235,0.25), rgba(70,130,180,0.35)),
url("../uploads/ship.jpg") center center / cover no-repeat fixed;
}

/* ===== NAVBAR ===== */
.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 40px;

background:rgba(10,40,80,0.85);
backdrop-filter:blur(6px);

position:sticky;
top:0;
z-index:100;

border-bottom:1px solid rgba(255,255,255,0.15);
}

.navbar a{
color:white;
margin-left:20px;
text-decoration:none;
font-weight:500;
}

.navbar a:hover{
color:#66b2ff;
}

.admin-btn{
background:#1a73e8;
color:white !important;
padding:6px 12px;
border-radius:6px;
font-size:13px;
}

/* ===== LOGO ===== */
.logo img{
height:55px;
background:white;
padding:5px 10px;
border-radius:8px;
}

/* ===== HERO ===== */
.hero{
min-height:85vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;

/* LIGHTER + CLEAN */
background:
linear-gradient(rgba(135,206,235,0.25), rgba(25,80,140,0.35)),
url("../uploads/ship.jpg") center center / cover no-repeat;
}

.hero-content{
max-width:800px;
margin:auto;
}

.hero h1{
font-size:50px;
margin-bottom:20px;
}

.hero p{
font-size:20px;
margin-bottom:30px;
}

/* ===== BUTTON ===== */
.btn{
display:inline-block;
padding:12px 22px;
margin:5px;
background:linear-gradient(135deg, #1a73e8, #00b4ff);
color:white;
text-decoration:none;
border-radius:8px;
transition:0.3s;
box-shadow:0 6px 18px rgba(0,0,0,0.3);
}

.btn:hover{
transform:translateY(-2px);
box-shadow:0 10px 25px rgba(0,0,0,0.4);
}

.btn.secondary{
background:transparent;
border:2px solid white;
}

.btn.secondary:hover{
background:white;
color:#0a2540;
}

/* ===== SECTION ===== */
.section{
padding:80px 20px;
max-width:1200px;
margin:30px auto;
text-align:center;
}

/* ===== GRID ===== */
.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
max-width:1100px;
margin:auto;
}

/* ===== FLEET GRID ===== */
.fleet-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:25px;
margin-top:30px;
}

/* ===== VESSEL CARD ===== */
.vessel-card{
background:rgba(10,30,60,0.85);
border-radius:12px;
overflow:hidden;
transition:0.3s;
box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

.vessel-card:hover{
transform:translateY(-5px);
box-shadow:0 15px 35px rgba(0,0,0,0.4);
}

.vessel-img{
width:100%;
height:220px;
object-fit:cover;
}

.vessel-info{
padding:15px;
text-align:left;
}

/* ===== STATUS ===== */
.status-badge{
display:inline-block;
padding:5px 10px;
border-radius:6px;
font-size:12px;
font-weight:bold;
margin-top:8px;
}

.status-available{
background:#28a745;
}

.status-under-offer{
background:#ff9800;
}

.status-sold{
background:#e53935;
}

/* ===== CARD ===== */
.card{
background:rgba(15,47,79,0.85);
padding:25px;
border-radius:10px;
transition:0.3s;
}

.card:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,0.4);
}

/* ===== CTA ===== */
.premium-cta{
text-align:center;
padding:80px 20px;

background:linear-gradient(rgba(10,40,80,0.6), rgba(10,30,60,0.7));
border-radius:10px;
}

/* ===== FOOTER ===== */
.footer{
background:#061a2d;
padding:20px;
text-align:center;
font-size:14px;
margin-top:30px;
}

/* ===== WHATSAPP ===== */
.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:white;
font-size:28px;
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
box-shadow:0 4px 15px rgba(0,0,0,0.3);
z-index:999;
}

/* ===== FORM ===== */
form{
max-width:600px;
margin:40px auto;
background:rgba(0,0,0,0.55);
padding:25px;
border-radius:10px;
}

form input,
form textarea{
width:100%;
padding:10px;
margin-bottom:10px;
border-radius:6px;
border:none;
}

/* ================= MOBILE IMPROVEMENTS ================= */
@media(max-width:768px){

/* NAVBAR */
.navbar{
flex-direction:column;
gap:10px;
text-align:center;
}

.navbar nav{
margin-top:10px;
}

.navbar a{
display:inline-block;
margin:8px;
}

/* LOGO */
.logo img{
height:45px;
}

/* HERO */
.hero h1{
font-size:28px;
}

.hero p{
font-size:16px;
}

/* BUTTON FULL WIDTH */
.btn{
display:block;
width:90%;
margin:10px auto;
text-align:center;
}

/* GRID STACK */
.fleet-grid{
grid-template-columns:1fr;
}

/* CARD WIDTH */
.vessel-card{
width:95%;
margin:auto;
}

/* FORM FIX */
.row{
flex-direction:column;
}

.row input{
width:100%;
margin-bottom:10px;
}

/* TEXTAREA FIX */
textarea{
width:100%;
}

/* INPUT FONT (PREVENT IOS ZOOM) */
input, textarea{
font-size:16px;
}

/* IMAGE FIX */
.vessel-img{
height:auto;
}

/* WHATSAPP */
.whatsapp-float{
bottom:15px;
right:15px;
width:50px;
height:50px;
font-size:22px;
}
}