/* Weiser Agencies Gold/Black Theme */

/* RESET & BASE */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    background: #000000; 
    color: #FFFFFF; /* Changed from gold to white */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
}

/* HEADINGS - GOLD ONLY */
h1, h2, h3, h4, h5, h6 {
    color: #FFD700; /* Gold headings */
    font-weight: 300;
    letter-spacing: 1px;
}

/* GOLD ACCENT CLASSES */
.gold { 
    color: #FFD700; 
}
.gold-accent {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* LANDING PAGE SPECIFIC */
.landing-page body {
    color: #FFD700; /* Landing page keeps gold text */
}

/* HERO SECTIONS */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.95));
}

/* MAIN CONTENT - WHITE TEXT */
.main-content,
.section,
.service,
.contact-info,
p,
ul,
ol,
li,
td,
th,
div:not(.gold):not(.gold-accent) {
    color: #FFFFFF; /* White text for all content */
}

/* LINKS */
a {
    color: #FFD700; /* Gold links */
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #FFFFFF; /* White on hover */
}

/* SPECIAL ELEMENTS THAT SHOULD STAY GOLD */
.tagline,
.highlight,
.accent {
    color: #FFD700;
}

/* NAVIGATION */
nav {
    background: rgba(0,0,0,0.9);
    padding: 20px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav a {
    color: #FFD700;
    text-decoration: none;
    margin-right: 30px;
    letter-spacing: 1px;
}

/* SERVICE CARDS */
.service {
    background: rgba(255,215,0,0.05);
    padding: 30px;
    margin-bottom: 20px;
    border-left: 3px solid #FFD700;
    color: #FFFFFF; /* White text in service cards */
}

.service h3 {
    color: #FFD700; /* Gold service titles */
}

/* CONTACT INFO */
.contact-info {
    margin-top: 50px;
    color: #FFFFFF; /* White contact text */
}

.contact-info i {
    color: #FFD700; /* Gold icons */
    margin-right: 10px;
}

/* BUTTONS */
button,
input[type="submit"],
.cta-button {
    background: linear-gradient(135deg, #FFD700, #B8860B);
    color: #000000; /* Black text on gold buttons */
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    nav { padding: 15px 20px; }
    nav a { margin-right: 15px; font-size: 0.9rem; }
}
