/* ===== ROOT VARIABLES ===== */
:root {
    --gold: #D4AF37;
    --navy: rgba(0, 30, 90, 1);
    --dark-bg: rgba(0, 40, 80, 0.6);
    --black: #000;
    --white: #fff;
    --creme: #FFF8E7;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    font-family: 'Poppins', sans-serif;
    padding-top: 110px; 
}

/* ===== NAVBAR ===== */
.all {
    background-color: rgba(0, 30, 90, 0.7); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.logo {
    width: 190px; 
    height: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.navbar {
    display: flex;
    align-items: center;
}

.navbar a {
    color: rgba(255, 255, 255, 0.95);
    padding: 12px 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.navbar a:hover {
    background-color: rgba(0, 10, 30, 0.8); 
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* ===== DROPDOWN ===== */
.dropdown {
    position: relative;
}

.dropdown .dropbtn {
    border: none;
    outline: none;
    color: rgba(255, 255, 255, 0.95);
    padding: 12px 18px;
    background-color: inherit;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(0, 30, 90, 0.9); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 160px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-content a {
    color: rgba(255, 255, 255, 0.95);
    padding: 12px 16px;
    display: block;
    text-align: left;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: rgba(0, 10, 30, 0.9); 
    color: #ffffff;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* ===== QUOTE INFORMATION & FORM ===== */
.star {
    padding-top: 70px;
    font-family: "Playfair Display SC", serif;
    color: #001E5A; /* Deep solid navy */
    letter-spacing: 1px; /* Spreads the letters for a "logo" feel */
    font-size: 25px;
}

.contact-box p {
    font-family: "Playfair Display", serif;
    margin-bottom: 20px;
    color: #333333; /* Dark Charcoal - much easier to read than light navy */
    font-size: 1.1rem;
}

/* Integrated Input Styling for Text, Email, Address, and Textarea */
input[type=text], 
input[type=email], 
select, 
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    font-family: 'Poppins', sans-serif;
    display: block;
}

/* The Submit Button - Custom GL Painting Style */
input[type=submit] {
    background-color: var(--navy);
    color: var(--gold);
    padding: 15px 25px;
    border: 2px solid var(--gold);
    border-radius: 4px;
    cursor: pointer;
    font-family: "Playfair Display SC", serif;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

input[type=submit]:hover {
    background-color: var(--gold);
    color: var(--navy);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Container styling */
.contact-box {
    border-radius: 10px;
    /* This adds your image */
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
                url('img/nice.png'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Optional: adds a slight parallax effect */
    
    padding: 40px 10%;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Two columns */
.column {
    float: left;
    width: 50%;
    margin-top: 6px;
    padding: 20px;
}

.row::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout */
@media screen and (max-width: 768px) {
    .row {
        display: flex;
        flex-direction: column;
    }

    .column {
        width: 100%;
        padding: 10px 0;
    }

    .contact-box {
        padding: 20px 5%;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy);
    color: var(--creme);
    padding: 60px 10%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    border-top: 4px solid var(--gold);
    border-radius: 20px 20px 0 0;
}

.footer-section {
    flex: 1;
    min-width: 300px;
}

.footer h3 { 
    margin-bottom: 20px;
    color: var(--gold); 
    font-family: "Playfair Display SC", serif;
    font-size: 24px;
}

.footer p { 
    margin: 5px 0; 
    font-size: 16px; 
    line-height: 1.6;
    font-family: "Playfair Display", serif;
}

.contact-info {
    margin: 25px 0 15px 0; 
    text-align: left;
}

.contact-info strong {
    color: var(--gold);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    margin-right: 10px;
}

.contact-info a {
    color: var(--creme);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--gold);
}

.footer-quote-btn {
    display: inline-block;        
    background-color: var(--gold);    
    color: var(--navy);               
    padding: 14px 30px;
    text-decoration: none;
    font-family: "Playfair Display SC", serif;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
}

.footer-quote-btn:hover {
    background-color: var(--creme);    
    transform: translateY(-3px);  
}

.footer-section-social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    min-width: 200px;
}

.footer-section-social h4 {
    color: var(--gold);
    font-family: "Playfair Display SC", serif;
    margin-bottom: 15px;
    font-size: 18px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: var(--creme);
    font-size: 24px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 13px;
    border-top: 1px solid rgba(212, 175, 55, 0.2); 
    color: rgba(255, 248, 231, 0.6);
}

/* MOBILE NAVBAR & FOOTER FIXES */
@media (max-width: 768px) {
    .footer { justify-content: center; text-align: center; }
    .footer-section-social { align-items: center; text-align: center; width: 100%; }
    .social-icons { justify-content: center; }
    
    .all { flex-direction: column; padding: 15px 10px; }
    .logo { width: 140px; margin-bottom: 10px; }
    .navbar { flex-wrap: wrap; justify-content: center; }
    body { padding-top: 160px; }
}