/*
Theme Name: Beemy Executive Car
Theme URI: https://beemyexecutivecar.co.uk
Author: Gurdeep
Author URI: https://beemyexecutivecar.co.uk
Description: Premium private hire theme for Beemy Executive Car Ltd with navy, gold and luxury styling.
Version: 1.0
Text Domain: beemy-executive
*/
/* Base reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Colours & fonts */
body {
    font-family: "Montserrat", Arial, sans-serif;
    background-color: #050814; /* deep navy */
    color: #ffffff;
    line-height: 1.6;
}

/* Links */
a {
    color: #f5c542; /* gold */
    text-decoration: none;
}
a:hover {
    color: #ffffff;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #f5c542, #d9a321);
    color: #050814;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #ffd96a, #f5c542);
    transform: translateY(-1px);
}

/* Hero section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: radial-gradient(circle at top, #1a2340 0%, #050814 60%, #02030a 100%);
    color: #ffffff;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #d0d4e6;
    margin-bottom: 30px;
}
