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

body {
    background-color: #0a0a0a;
    /* Dark background */
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

/* Header & Navigation */
.main-header {
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    /* font-family: 'Playfair Display', serif; */
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 10;
}

.top-nav ul {
    display: flex;
    gap: 3rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Page Styles */
.contact-page {
    padding: 4rem 4rem;
    min-height: 70vh;
    display: flex;
    justify-content: center;
}

.contact-container {
    width: 100%;
    max-width: 800px;
}

.contact-container h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

.contact-details {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
}

.detail-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-item p {
    font-weight: 300;
    line-height: 1.8;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    background-color: transparent;
    border: 1px solid #333;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fff;
}

.submit-btn {
    padding: 1rem 2rem;
    background-color: #fff;
    color: #000;
    border: none;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: max-content;
}

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

/* Hero Section */
.hero {
    display: flex;
    padding: 2rem 4rem;
    min-height: 80vh;
    align-items: center;
    position: relative;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
    z-index: 2;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-style: normal;
}

/* Italicize parts of the heading to match style if possible with font variants, 
   but Playfair handles italics beautifully */
.hero-content h1 {
    font-style: italic;
}

.hero-content p {
    max-width: 400px;
    font-size: 1rem;
    font-weight: 300;
}

.hero-image {
    flex: 1;
    height: 600px;
    position: relative;
}

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

/* Info Bar */
.info-bar {
    background-color: #ffffff;
    color: #000;
    padding: 0.8rem 0;
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    width: 100%;
}

/* Tagline Section */
.tagline-section {
    padding: 6rem 4rem;
    text-align: center;
    border-bottom: 1px solid #333;
}

.tagline-section h2 {
    font-size: 3rem;
    font-style: italic;
    margin-bottom: 3rem;
}

.sub-nav ul {
    display: flex;
    justify-content: center;
    gap: 4rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 1.5rem 0;
    max-width: 900px;
    margin: 0 auto;
}

/* Who We Are */
.who-we-are {
    display: flex;
    padding: 6rem 4rem;
    gap: 4rem;
    align-items: center;
    border-bottom: 1px solid #222;
}

.who-we-are .text-content {
    flex: 1;
}

.who-we-are h3 {
    font-size: 3.5rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.who-we-are p {
    font-size: 0.95rem;
    font-weight: 300;
    max-width: 80%;
}

.who-we-are .image-content {
    flex: 1;
    height: 500px;
}

.who-we-are .image-content img {
    height: 100%;
    width: 100%;
}

/* Our Mission */
.our-mission {
    display: flex;
    padding: 6rem 4rem;
    gap: 4rem;
    align-items: center;
    border-bottom: 1px solid #222;
}

.our-mission .image-content {
    flex: 1;
    height: 500px;
}

.our-mission .image-content img {
    height: 100%;
    width: 100%;
}

.our-mission .text-content {
    flex: 1;
    padding-left: 2rem;
}

.our-mission h3 {
    font-size: 3.5rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.mission-list li {
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
    font-size: 0.9rem;
    font-weight: 300;
}

.mission-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #fff;
}

/* Stats */
.stats {
    display: flex;
    justify-content: flex-end;
    gap: 4rem;
    padding: 4rem 8rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item .number {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-item .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services */
.services {
    padding: 0 4rem 6rem 4rem;
}

.service-row {
    display: flex;
    margin-bottom: 6rem;
    align-items: center;
    gap: 4rem;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    height: 500px;
}

.service-image img {
    height: 100%;
    width: 100%;
}

.service-text {
    flex: 1;
    position: relative;
}

.service-text h3 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
    line-height: 1;
}

.service-text p {
    margin-bottom: 2rem;
    font-weight: 300;
    max-width: 90%;
}

.line-separator {
    display: block;
    width: 100px;
    height: 1px;
    background-color: #fff;
    position: relative;
}

.line-separator::after {
    content: '';
    position: absolute;
    right: -5px;
    top: -2px;
    width: 5px;
    height: 5px;
    border: 1px solid #fff;
    border-radius: 50%;
}

/* Footer */
footer {
    padding: 2rem 4rem;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.5;
    border-top: 1px solid #222;
    margin-top: 4rem;
}

/* Responsive */
@media (max-width: 900px) {

    .main-header,
    .top-nav,
    .hero,
    .tagline-section,
    .who-we-are,
    .our-mission,
    .services,
    .stats,
    .contact-page {
        padding: 2rem;
    }

    .main-header {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .contact-container h1 {
        font-size: 3rem;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .sub-nav ul {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .who-we-are,
    .our-mission,
    .service-row,
    .service-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .mission-list li {
        padding-left: 0;
        text-align: center;
    }

    .mission-list li::before {
        display: none;
    }

    .stats {
        justify-content: center;
        padding: 2rem;
    }

    .line-separator {
        margin: 0 auto;
    }
}