@import url('https://fonts.googleapis.com/css?family=Alegreya:400,700&display=swap');

:root {
    --primary-color: #C17F11;
    --secondary-color: #8B5E0D;
    --text-color: #333;
    --background-color: #fff;
}

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

body {
    font-family: 'Alegreya', serif;
    /* font-family: 'Inter', sans-serif; */
    line-height: 1.6;
    color: var(--text-color);
}

/* Header & Navigation */
header {
    background-color: var(--background-color);
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 88px;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
    margin: .5em;
}

.nav-links a {
    margin-left: 2rem;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 6rem 2rem;
    /* background-color: #f8f9fa; */
    background-color: hsl(227 23% 25% / 1);
    height: calc(95vh - 88px);
    background-image: url('mountain.jpg');
    background-size: cover;
    background-position: center center;
    position: relative;
    font-weight: bold;
    font-family: "Alegreya", serif;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
    z-index: 1;
    pointer-events: none;
}

.hero > * {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 3rem;
    color: white;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: white;
    margin-bottom: 4rem;
}

.subtitle img {
    height: 1.2em;
    vertical-align: middle;
    margin-left: 0.25em;
}

.cta-button {
    display: inline-block;
    padding: .75rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.5rem;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

.feature-section-bg {
    background-color: hsl(227 23% 25% / 1);
    width: 100%;
}

.feature-section {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    /* height: 90vh; */
    color: white;
    display: flex;
    padding: 5rem 2em;
    row-gap: 4rem;
    column-gap: 10rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-section h1, section.pricing h1  {
    /* color: var(--primary-color); */
    font-size: 3rem;
    width: 100%;
    text-align: center;
}

.feature-details {
    width: 300px;
    margin: 1rem 0;
    text-align: left;
}

.feature-details h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

section.pricing {
    padding: 5rem 5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 10rem;
    row-gap: 2rem;
}

section.pricing>p {
    font-size: 1.5rem;
    /* margin-top: -4rem; */
}

section.pricing {
    background: white;
    color: initial;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    width: 300px;
    height: 240px;
    background-color: #efefef;
    padding: 2rem;
    text-align: center;
}

.pricing-card h2 {
    font-size: 2rem;
}

.pricing-card p {
    font-size: 1.2rem;
    margin: 1rem 0;
}

/* .feature-section .headline {
    grid-column: 1 / 3;
    text-align: center;
}

.feature-section .description {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
} */

/* Services Section */
.services {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.contact-form textarea {
    min-height: 150px;
}

.submit-button {
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: var(--secondary-color);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--text-color);
    color: white;
}
/* 
.rock-salt-regular {
    font-family: "Rock Salt", cursive;
    font-weight: 400;
    font-style: normal;
}

.alegreya-sc-regular {
    font-family: "Alegreya SC", serif;
    font-weight: 400;
    font-style: normal;
}

.alegreya-sc-medium {
    font-family: "Alegreya SC", serif;
    font-weight: 500;
    font-style: normal;
}

.alegreya-sc-bold {
    font-family: "Alegreya SC", serif;
    font-weight: 700;
    font-style: normal;
}

.alegreya-sc-extrabold {
    font-family: "Alegreya SC", serif;
    font-weight: 800;
    font-style: normal;
}

.alegreya-sc-black {
    font-family: "Alegreya SC", serif;
    font-weight: 900;
    font-style: normal;
}

.alegreya-sc-regular-italic {
    font-family: "Alegreya SC", serif;
    font-weight: 400;
    font-style: italic;
}

.alegreya-sc-medium-italic {
    font-family: "Alegreya SC", serif;
    font-weight: 500;
    font-style: italic;
}

.alegreya-sc-bold-italic {
    font-family: "Alegreya SC", serif;
    font-weight: 700;
    font-style: italic;
}

.alegreya-sc-extrabold-italic {
    font-family: "Alegreya SC", serif;
    font-weight: 800;
    font-style: italic;
}

.alegreya-sc-black-italic {
    font-family: "Alegreya SC", serif;
    font-weight: 900;
    font-style: italic;
}

.alegreya {
  font-family: "Alegreya", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
} */

/* .spacer { height: 120vh; } */

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }
}