/* Custom Properties for easy color changes */
:root {
    --honeyBronze: #edae49;
    --amaranth: #d1495b;
    --teal: #00798c;
    --balticBlue: #30638e;
    --yaleBlue: #003d5b;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--light-gray);
    background-color: var(--dark-bg);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
/* FORCE THE NAV BACKGROUND */
nav {
    background-color: #0f172a !important; 
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* THE LOGO FIX */
.nav-flex img {
    height: 120px !important; 
    width: auto;
    display: block;
    
    /* THE SEAMLESS TRICK: This blends the edges of the JPG */
    mix-blend-mode: screen; 
    
    /* Alternative if 'screen' makes it look weird: */
    /* filter: drop-shadow(0 0 10px #0f172a); */
}

/* Remove any old logo-placeholder or nav img code to avoid conflict */

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

/* This targets the logo specifically */
nav img {
    height: 80px; /* Increase this number to make the logo larger */
    width: auto;  /* Keeps the proportions correct */
    display: block;
    transition: transform 0.3s ease;
}

/* Optional: Adds a slight "pop" when hovered */
nav img:hover {
    transform: scale(1.05);
}

/* Adjust the nav padding if the logo feels "cramped" */
nav {
    padding: 0.5rem 0; /* Reducing vertical padding gives the logo more room */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--light-gray);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-blue);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    background: radial-gradient(circle at top, #1e293b 0%, #0f172a 100%);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* Buttons */
.btn-primary {
    background: var(--amaranth);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    margin-right: 10px;
}

.btn-secondary {
    border: 1px solid var(--text-gray);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 50px;
    background: var(--balticBlue);
    background-color: var(--primary-blue);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
}

/* Layout Grids */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 80px 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 40px 0;
}

/* Cards */
.card {
    background: var(--primary-blue);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
}

.card.highlight {
    border: 1px solid var(--accent-blue);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin: 10px 0;
}

/* Image Frame */
.image-frame img {
    width: 100%;
    border-radius: 10px;
    filter: grayscale(20%);
    border: 4px solid var(--primary-blue);
}

.text-center { text-align: center; }

/* Responsive */
@media (max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
    .nav-links { display: none; }
}

footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
    color: var(--text-gray);
}