/* =====================
   CircleK Yellow & Blue Theme
   ===================== */

/* Import Montserrat & Inter Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Montserrat:wght@700&display=swap');

/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #fefefe;
    margin: 0;
    padding: 0;
    color: #000000; /* brand black */
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: #003366;
}

/* Navigation Bar */
.navbar {
    background-color: #003366 !important;
}

.navbar .navbar-brand,
.navbar .nav-link {
    color: #B89552 !important; /* gold */
    font-weight: bold;
}

.navbar .nav-link:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

/* Container */
.container {
    padding: 20px;
}

/* Forms */
form {
    background-color: #ffffff;
    padding: 20px;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

/* Inputs */
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
    font-family: 'Inter', sans-serif;
}

/* Buttons */
button,
.btn-primary {
    background-color: #B89552; /* gold */
    color: #ffffff;
    font-weight: bold;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

button:hover,
.btn-primary:hover {
    background-color: #a47d35;
    color: #ffffff;
}

/* Links */
a {
    color: #003366;
    text-decoration: none;
}

a:hover {
    color: #001a33;
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #003366;
    color: #B89552;
    padding: 20px 0;
    margin-top: 40px;
}

footer a {
    color: #B89552;
}

footer a:hover {
    color: #ffffff;
}

/* Contact Info List */
ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    margin-bottom: 8px;
    font-size: 16px;
}

/* ==========================
   Dropdown on Hover (Option 2)
   ========================== */
.dropdown-menu {
    transition: opacity 0.2s ease, transform 0.2s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    display: block;
    position: absolute;
}

.navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ============================
   Floating 3D Footer Buttons (Gold Theme)
   ============================ */
.footer-social {
    gap: 20px;
    margin-top: 10px;
}

.footer-social .btn-3d {
    height: 60px;
    width: 60px;
    background: #B89552; /* Circle K Gold */
    color: white;
    font-size: 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    text-decoration: none;
    box-shadow: 0 6px 0 #8a6c35, 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-social .btn-3d:hover {
    transform: translateY(-8px);
    background: #a47d35;
    box-shadow: 0 3px 0 #6b4e1c, 0 15px 25px rgba(0, 0, 0, 0.3);
}

.footer-social .btn-3d i {
    pointer-events: none;
}
