
/*
Theme Name: HydroRoyal Premium
Author: OpenAI
Version: 1.0
Description: Premium WordPress theme for bottled water and refill businesses with optional ecommerce support.
*/

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

body{
    font-family: Arial, sans-serif;
    background:#f5fbff;
    color:#1e293b;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.hydroyal-container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.hydroyal-header{
    background:white;
    padding:18px 0;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 4px 18px rgba(0,0,0,0.05);
}

.hydroyal-nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:32px;
    font-weight:800;
    color:#005792;
}

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

.nav-links a{
    color:#334155;
    font-weight:600;
}

.hero{
    background:linear-gradient(135deg,#00a8e8,#005792,#003554);
    color:white;
    padding:100px 0;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero h1{
    font-size:68px;
    line-height:1.05;
    margin-bottom:24px;
    font-weight:900;
}

.hero p{
    font-size:22px;
    margin-bottom:35px;
    color:#dbeafe;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.btn-primary{
    background:white;
    color:#005792;
    padding:16px 32px;
    border-radius:50px;
    font-weight:700;
}

.btn-outline{
    border:2px solid white;
    color:white;
    padding:16px 32px;
    border-radius:50px;
    font-weight:700;
}

.hero-image img{
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,0.25);
}

.section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    font-size:46px;
    margin-bottom:15px;
    color:#005792;
    font-weight:900;
}

.section-subtitle{
    text-align:center;
    color:#64748b;
    max-width:700px;
    margin:0 auto 60px;
    font-size:18px;
}

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

.card{
    background:white;
    padding:35px;
    border-radius:26px;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card h3{
    margin:20px 0 12px;
    color:#005792;
    font-size:28px;
}

.products{
    background:white;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.product-card{
    background:#f8fbff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 8px 30px rgba(0,0,0,0.07);
}

.product-card img{
    height:240px;
    width:100%;
    object-fit:cover;
}

.product-content{
    padding:24px;
}

.product-content h4{
    font-size:26px;
    color:#005792;
    margin-bottom:10px;
}

.cta{
    background:linear-gradient(135deg,#005792,#001d2e);
    color:white;
    text-align:center;
    padding:100px 20px;
}

.cta h2{
    font-size:52px;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:0 auto 35px;
    color:#dbeafe;
    font-size:20px;
}

.footer{
    background:#00111f;
    color:#cbd5e1;
    padding:60px 20px;
    text-align:center;
}

.footer h3{
    color:white;
    margin-bottom:15px;
    font-size:32px;
}

@media(max-width:900px){

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

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

.nav-links{
    display:none;
}

.section-title{
    font-size:36px;
}

.cta h2{
    font-size:38px;
}

}
