/* Home page styles */
@font-face {
    font-family: 'cakefont';
    src: url('../font/cakedingbats-webfont.eot');
    src: url('../font/cakedingbats-webfont.eot?#iefix') format('embedded-opentype'),
    url('../font/cakedingbats-webfont.woff2') format('woff2'),
    url('../font/cakedingbats-webfont.woff') format('woff'),
    url('../font/cakedingbats-webfont.ttf') format('truetype'),
    url('../font/cakedingbats-webfont.svg#cake_dingbatsregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
body {
    padding: 60px 0;
}
header {
    margin-bottom: 60px;
}
img {
    margin-bottom: 30px;
}
h1 {
    font-weight: bold;
}
ul {
    list-style-type: none;
    margin: 0 0 30px 0;
    padding-left: 25px;
}
a {
    color: #0071BC;
    text-decoration: underline;
}
hr {
    border-bottom: 1px solid #e7e7e7;
    border-top: 0;
    margin-bottom: 35px;
}

.text-center {
    text-align: center;
}
.links a {
    margin-right: 10px;
}
.release-name {
    color: #D33C43;
    font-weight: 400;
    font-style: italic;
}
.bullet:before {
    font-family: 'cakefont', sans-serif;
    font-size: 18px;
    display: inline-block;
    margin-left: -1.3em;
    width: 1.2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    vertical-align: -1px;
}
.success:before {
    color: #88c671;
    content: "\0056";
}
.problem:before {
    color: #d33d44;
    content: "\0057";
}
.cake-error {
    padding: 10px;
    margin: 10px 0;
}
#url-rewriting-warning {
    display: none;
}

.landing-page {
    background: #f4f4f4;
    min-height: 100vh;
    box-sizing: border-box;
}

/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
}

.logo {
    font-size: 2.4rem;
    font-weight: 700;
    font-family: Georgia, "Times New Roman", serif;
    color: #111;
}

.site-nav {
    display: flex;
    gap: 2rem;
}

.site-nav a {
    text-decoration: none;
    color: #111;
    font-size: 1.4rem;
    font-weight: 500;
}

.site-nav a:hover {
    text-decoration: underline;
}

/* Hero section */
.hero {
    padding: 5rem 6rem 7rem 6rem;
}

.hero-content {
    max-width: 620px;
}

.hero h1 {
    font-size: 4.6rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    color: #111;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    color: #111;
}

.hero p {
    font-size: 1.8rem;
    line-height: 1.5;
    color: #222;
    margin-bottom: 2.5rem;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-buttons a {
    display: inline-block;
    padding: 1rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    transition: 0.2s ease;
}

.btn{
    background: #d9d9d9;
    color: #111;
}

.btn:hover{
    background: #c9c9c9;
}

/* How it works section */
.how-it-works {
    padding: 4rem 6rem 7rem 6rem;
}

.how-it-works h2 {
    font-size: 4rem;
    margin-bottom: 3rem;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    color: #111;
}

.steps {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.step-card {
    background: #d9d9d9;
    border-radius: 8px;
    width: 240px;
    min-height: 190px;
    padding: 1.6rem;
    box-sizing: border-box;
}

.step-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    color: #111;
}

.step-card p {
    font-size: 1.5rem;
    line-height: 1.45;
    margin: 0;
    color: #222;
}


/* Responsive */
@media (max-width: 768px) {
    .site-header,
    .hero,
    .how-it-works,
    .site-footer {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .site-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .how-it-works h2 {
        font-size: 3rem;
    }

    .steps {
        flex-direction: column;
    }

    .step-card {
        width: 100%;
    }
}

/* Contact Forms*/
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
