/*
Theme Name: Blue Jal Luxury Theme
Theme URI: https://bluejal.com
Author: Manus
Description: A premium, luxury WordPress theme for KM Blue Jal Co. designed for premium bottled water solutions.
Version: 1.0.0
Text Domain: bluejal-luxury
*/

/* Basic Reset and Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400&family=Playfair+Display:wght@700;900&display=swap');

:root {
    --navy: #0D2B5E;
    --sky-blue: #1E90FF;
    --glacier-white: #F8FBFF;
    --soft-steel: #E8F0FE;
    --gold: #C9A84C;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--navy);
    background-color: var(--glacier-white);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

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

/* Button Styles */
.btn-gold {
    background-color: var(--gold);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-gold:hover {
    background-color: #b08e3a;
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid white;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--navy);
}
