
:root {
    --dark-blue: #0A192F;
    --charcoal: #333333;
    --slate-gray: #555B6E;
    --light-gray: #f4f4f4;
    --muted-gold: #C0B283;
    --white: #FFFFFF;
    --font-primary: 'Georgia', 'Times New Roman', serif;
    --font-secondary: 'Helvetica Neue', 'Arial', sans-serif;
}

body {
    font-family: var(--font-primary);
    margin: 0;
    background-color: var(--white);
    color: var(--charcoal);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--dark-blue);
}

.container {
    width: 85%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header & Navigation */
header {
    background-color: var(--white);
    border-bottom: 1px solid var(--light-gray);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 85%;
    max-width: 1100px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav li {
    margin-left: 35px;
}

nav a {
    text-decoration: none;
    color: var(--slate-gray);
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav a:hover, nav a.active {
    color: var(--muted-gold);
    border-bottom: 2px solid var(--muted-gold);
    padding-bottom: 5px;
}

/* Hero Section */
.hero {
    background-color: var(--dark-blue);
    background-image: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.8)), url('src/assets/market_visual_bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: normal;
    margin: 0 0 20px 0;
    color: var(--white);
}

.hero p {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: var(--muted-gold);
    color: var(--white);
    padding: 15px 35px;
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #A49571;
    transform: translateY(-2px);
}

/* Content Sections */
section {
    padding: 80px 0;
    border-bottom: 1px solid var(--light-gray);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

section:last-of-type {
    border-bottom: none;
}

section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: var(--dark-blue);
    color: var(--light-gray);
    padding: 50px 0;
    text-align: center;
}

footer .container p {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    margin: 10px 0;
    color: var(--slate-gray);
}

footer .container p strong {
    color: var(--light-gray);
}

/* Form & Contact Buttons */
.contact-options {
    text-align: center;
    margin-bottom: 40px;
}

.contact-btn {
    display: inline-block;
    margin: 10px;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.email-btn {
    background-color: var(--muted-gold);
    color: var(--white);
}

.whatsapp-btn {
    background-color: #25D366;
    color: var(--white);
}

.contact-btn:hover {
    transform: translateY(-2px);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-family: var(--font-secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: var(--font-primary);
}

.submit-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--muted-gold);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-family: var(--font-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #A49571;
}
