:root {
    --primary-color: #1a2b40; /* Deep navy/midnight blue */
    --secondary-color: #c8a951; /* Rich gold */
    --accent-color: #f4f2ed; /* Warm cream */
    --dark-color: #111111;
    --white: #ffffff;
    --text-color: #2c2c2c;
    --text-light: #666666;
    --border-color: #e5e5e5;
    --gray-color: #f7f7f7;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--white);
    font-size: 16px;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Times New Roman', Georgia, serif;
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    font-family: 'Montserrat', sans-serif;
}

.btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover:after {
    left: 0;
}

.btn:hover {
    color: var(--dark-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    padding: 0.5rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-img {
    height: auto;
    width: 140px;
    filter: invert(1) brightness(0);
}

nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover:after {
    width: 100%;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger .bar {
    width: 24px;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    margin-top: 76px;
    padding: 120px 24px 100px;
    background: linear-gradient(rgba(26, 43, 64, 0.5), rgba(26, 43, 64, 0.5)), url('IMG_2708.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--white);
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 300;
}

/* Blog Section */
.section {
    padding: 100px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 48px;
}

.blog-card {
    background: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.blog-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.blog-card:hover::after {
    width: 100%;
}

.blog-image-wrapper {
    position: relative;
    padding-top: 65%;
    overflow: hidden;
    background-color: var(--accent-color);
    margin-bottom: 24px;
}

.blog-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 16px;
    font-weight: 500;
}

.blog-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    line-height: 1.3;
}

.blog-title a {
    color: var(--primary-color);
}

.blog-title a:hover {
    color: var(--secondary-color);
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: 24px;
    flex-grow: 1;
    line-height: 1.7;
}

.read-more {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
    margin-top: auto;
}

.read-more svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

.read-more:hover svg {
    transform: translateX(4px);
}

/* Newsletter Section */
.newsletter-section {
    background-color: var(--gray-color);
    padding: 100px 0;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    background: var(--white);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    letter-spacing: 1px;
    font-size: 1.2rem;
}

.footer-col h4:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 1px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--white);
    border-color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    nav {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
        position: fixed;
        top: 76px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 32px 24px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        gap: 24px;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        display: flex;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 80px 24px 60px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    footer {
        padding: 60px 0 30px;
    }
    
    .footer-grid {
        gap: 40px;
    }
}

@media screen and (max-width: 480px) {
    .nav-container {
        padding: 16px 20px;
    }
    
    .blog-meta {
        flex-wrap: wrap;
    }
}
