/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', serif;
    color: #2C3E2D;
    background-color: #FDFBF7;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(253, 251, 247, 0.98);
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 24px;
    width: auto;
    transition: all 0.3s ease;
}

/* Navigation Styles */
.main-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.main-nav a {
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #5C6D5D;
}

/* Common Section Styles */
.section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #5C6D5D;
    font-style: italic;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2C3E2D;
    color: white;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #1A2F24;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #2C3E2D;
    color: #2C3E2D;
}

.btn-outline:hover {
    background-color: #2C3E2D;
    color: white;
}

/* Footer Styles */
.main-footer {
    background-color: #2C3E2D;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 2rem;
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-nav h4,
.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.footer-nav ul,
.footer-social ul {
    list-style: none;
}

.footer-nav li,
.footer-social li {
    margin-bottom: 0.8rem;
}

.footer-nav a,
.footer-social a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover,
.footer-social a:hover {
    opacity: 1;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
.mb-5 { margin-bottom: 5rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mt-5 { margin-top: 5rem; }

/* Responsive Logo Styles */
@media (max-width: 768px) {
    .logo-image {
        height: 20px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 18px;
    }
}
