/* Premium Professional Styling */
:root {
    --navy-blue: #0B243B;
    --cream: #FDFBF7;
    --gold: #C5A059;
    --text-dark: #1A1A1A;
    --white: #FFFFFF;
}

body {
    background-color: var(--cream);
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    cursor: none; 
    line-height: 1.8;
}

/* Custom Cursor */
#cursor {
    width: 25px;
    height: 25px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.1s ease;
}

#cursor::after {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
}

/* Header Styling */
header {
    background-color: var(--navy-blue);
    color: var(--gold);
    padding: 80px 20px;
    text-align: center;
    border-bottom: 5px solid var(--gold);
}

header img {
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin: 10px 0;
    letter-spacing: 4px;
}

/* Hero Section */
.hero {
    padding: 80px 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    font-size: 2.2rem;
}

/* Content Sections */
.section {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.section h3 {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    border-bottom: 1px solid var(--gold);
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

/* CTA Button Animation */
.cta-button {
    display: inline-block;
    background-color: var(--gold);
    color: var(--white);
    padding: 18px 40px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    border: 1px solid var(--gold);
    margin-top: 20px;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--gold);
    transform: scale(1.05);
}

/* Footer Icon Styling - Professional Look */
.contact {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
    margin-top: 50px;
}

.contact h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.footer-icons a {
    color: var(--white);
    font-size: 2.2rem;
    transition: all 0.3s ease;
}

.footer-icons a:hover {
    color: var(--gold);
    transform: translateY(-8px) scale(1.1);
}
