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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9fbfb;
}

/* Typography */
h1, h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Header & Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: #0b252e; /* Deep ocean blue/green */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    color: #d4af37; /* Elegant Gold */
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #d4af37;
}

.btn-nav {
    background-color: #d4af37;
    color: #0b252e !important;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background-color 0.3s ease !important;
}

.btn-nav:hover {
    background-color: #fff;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(11, 37, 46, 0.4), rgba(11, 37, 46, 0.7));
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.btn-primary {
    display: inline-block;
    background-color: #d4af37;
    color: #0b252e;
    text-decoration: none;
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

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

/* Welcome Section */
.welcome-section {
    padding: 80px 15%;
    text-align: center;
    background-color: #fff;
}

.welcome-section h2 {
    font-size: 2.5rem;
    color: #0b252e;
    margin-bottom: 20px;
}

.welcome-section p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
footer {
    background-color: #0b252e;
    color: #8fa4ab;
    text-align: center;
    padding: 40px 20px;
    font-size: 0.85rem;
    border-top: 3px solid #d4af37;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 15px;
    }
    
    nav ul {
        margin-top: 15px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .welcome-section {
        padding: 50px 5%;
    }
}