/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* Basic typography */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5; /* Light gray for background */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    color: #394B59; /* Navy blue for headings */
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin: 1rem 0;
}

p {
    font-size: 1rem;
    margin: 0.5rem 0;
}

/* Header */
header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #394B59; /* Navy blue for header */
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

nav a.logo {
    font-size: 1.75rem;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

nav a.logo img {
    max-width: 100px;
    max-height: 100px;
}

nav ul.menu {
    list-style: none;
    display: flex;
}

nav ul.menu li {
    margin-left: 1.5rem;
}

nav ul.menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

nav ul.menu li a:hover {
    color: #394B59; /* Navy blue for hover effect */
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Sections */
.section {
    padding: 3rem 2rem;
}

.section:nth-child(even) {
    background-color: #AAB7B8; /* Light olive green for alternate sections */
}

/* Contact form */
form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
}

input, textarea {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: 1px solid #ccc;
    transition: border-color 0.3s;
}

input:focus, textarea:focus {
    border-color: #394B59; /* Navy blue for form focus */
}

button[type="submit"] {
    background-color: #394B59; /* Navy blue for button */
    color: #fff;
    padding: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #AAB7B8; /* Light olive green for button hover */
}

/* Footer */
footer {
    background-color: #394B59; /* Navy blue for footer */
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.social-icons a {
    margin: 0 0.5rem;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 0.7;
}

.social-icons img {
    width: 24px;
    height: 24px;
}

/* Importing Roboto and Playfair Display from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');

/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* Color Palette */
:root {
    --primary-color: #1A1A2E; /* Deep Blue */
    --secondary-color: #E1E1E1; /* Light Grey */
    --accent-color: #BFA782; /* Gold/Bronze Accent */
}

/* Updated Navigation Styles */
nav ul.menu li a {
    color: var(--primary-color);
    background-color: var(--accent-color);
}

nav ul.menu li a:hover {
    color: var(--secondary-color);
    background-color: var(--primary-color);
}

/* Updated Button Styles */
button[type="submit"], .cta-button {
    background-color: var(--primary-color);
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

button[type="submit"]:hover, .cta-button:hover {
    background-color: var(--accent-color);
}

/* Enhancing the footer */
footer {
    background-color: var(--primary-color);
}

.social-icons a:hover {
    opacity: 0.8;
}
