
/*
Theme Name: BT365 Premium AI Theme
Author: OpenAI
Version: 2.0
Description: Premium AI Flight Discovery WordPress Theme
*/

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family: Arial, sans-serif;
background:#07111F;
color:white;
line-height:1.6;
}

a{
text-decoration:none;
color:white;
}

header{
position:sticky;
top:0;
z-index:1000;
background:rgba(7,17,31,0.95);
backdrop-filter: blur(10px);
border-bottom:1px solid rgba(255,255,255,0.08);
}

.container{
width:90%;
max-width:1280px;
margin:auto;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.logo{
font-size:30px;
font-weight:bold;
}

.nav-links{
display:flex;
gap:30px;
}

.hero{
padding:120px 0;
text-align:center;
background:
linear-gradient(rgba(7,17,31,.88),rgba(7,17,31,.95)),
url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?q=80&w=2074&auto=format&fit=crop');
background-size:cover;
background-position:center;
}

.hero h1{
font-size:68px;
line-height:1.1;
margin-bottom:25px;
}

.hero p{
font-size:22px;
color:#c5c5c5;
max-width:760px;
margin:auto;
}

.search-box{
margin-top:50px;
background:rgba(255,255,255,0.05);
padding:30px;
border-radius:24px;
display:grid;
grid-template-columns:repeat(5,1fr);
gap:15px;
backdrop-filter:blur(12px);
}

.search-box input,
.search-box select{
padding:18px;
border:none;
border-radius:14px;
background:#0d1b2f;
color:white;
font-size:16px;
}

.search-btn{
background:white;
color:black;
font-weight:bold;
border:none;
border-radius:14px;
cursor:pointer;
font-size:18px;
}

.section{
padding:100px 0;
}

.section-title{
font-size:48px;
margin-bottom:20px;
}

.section-subtitle{
color:#9ca3af;
margin-bottom:50px;
font-size:18px;
}

.cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.card{
background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.08);
padding:30px;
border-radius:24px;
transition:.3s;
}

.card:hover{
transform:translateY(-5px);
border-color:rgba(255,255,255,0.2);
}

.tag{
display:inline-block;
padding:8px 14px;
background:rgba(255,255,255,0.08);
border-radius:50px;
font-size:14px;
color:#d1d5db;
margin-bottom:20px;
}

.price{
font-size:42px;
font-weight:bold;
margin:20px 0;
}

.ai-box{
background:#0d1b2f;
padding:40px;
border-radius:30px;
margin-top:40px;
}

.ai-box textarea{
width:100%;
height:140px;
padding:20px;
background:#07111F;
border:1px solid rgba(255,255,255,0.08);
border-radius:20px;
color:white;
font-size:16px;
margin-bottom:20px;
}

.button{
display:inline-block;
padding:16px 28px;
background:white;
color:black;
font-weight:bold;
border-radius:16px;
cursor:pointer;
border:none;
}

footer{
padding:60px 0;
border-top:1px solid rgba(255,255,255,0.08);
text-align:center;
color:#9ca3af;
margin-top:60px;
}

@media(max-width:992px){

.hero h1{
font-size:48px;
}

.search-box{
grid-template-columns:1fr;
}

.cards{
grid-template-columns:1fr;
}

.nav-links{
display:none;
}
}
