@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* =========================
RESET
========================= */

{
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
}

body {
background: #080808;
color: #f5f5f5;

font-family: "Inter", sans-serif;

overflow-x: hidden;

}

/* =========================
HEADER
========================= */

header {

position: fixed;

top: 0;
left: 0;

width: 100%;

padding: 30px 60px;

display: flex;
justify-content: space-between;
align-items: center;

z-index: 100;

mix-blend-mode: difference;

}

.logo {

color: white;

text-decoration: none;

font-family: "Barlow Condensed", sans-serif;

font-size: 25px;

font-weight: 700;

letter-spacing: 3px;

}

.logo span,
footer span {

color: #ff3030;

}

nav {

display: flex;

gap: 35px;

}

nav a {

color: white;

text-decoration: none;

font-size: 12px;

text-transform: uppercase;

letter-spacing: 2px;

transition: 0.3s;

}

nav a {

color: #ff3030;

}

/* =========================
HERO
========================= */

.hero {

height: 100vh;

min-height: 700px;

position: relative;

display: flex;

align-items: center;

padding-left: 8%;

background-image:
    linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.45) 45%,
        rgba(0, 0, 0, 0.05) 100% 
    ),
    url("./hero.jpg");

background-size: cover;

background-position: center;

background-repeat: no-repeat;
    
}

/* HERO CONTENT */

.hero-content {

max-width: 1000px;

margin-left: 50px;

}

.hero-label {

font-size: 11px;

letter-spacing: 4px;

margin-bottom: 25px;

color: #ddd;

}

.hero h2 {

font-family: "Barlow Condensed", sans-serif;

font-size: clamp(80px, 12vw, 180px);

line-height: 0.78;

font-weight: 700;

letter-spacing: -3px;

margin-bottom: 35px;

}

.hero h2 span {

color: transparent;

-webkit-text-stroke: 1px white;

}

.hero-description {

font-size: 14px;

letter-spacing: 5px;

text-transform: uppercase;

color: #aaa;

margin-bottom: 35px;

}

/* HERO LOCATION */

.hero-location {

position: absolute;

right: 60px;

bottom: 45px;

font-family: "Barlow Condensed", sans-serif;

font-size: 14px;

letter-spacing: 3px;

text-align: right;

}

.hero-location span {

color: #777;

font-size: 10px;

}

/* =========================
BUTTON
========================= */

.button {

display: inline-block;

padding: 16px 28px;

background: white;

color: black;

text-decoration: none;

font-size: 11px;

font-weight: 600;

letter-spacing: 2px;

transition: 0.3s;

}

.button {

background: #ff3030;

color: white;

transform: translateY(-3px);

}

/* =========================
PORTFOLIO
========================= */

.portfolio {
    padding: 170px 8%; 
}

.section-top {
    max-width: 600px;
    margin-bottom: 80px;
}

.section-label {
    font-size: 10px;
    letter-spacing: 4px;
    color: #888;
    margin-bottom: 20px;
}

.portfolio h2,
.about h2 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(90px, 11vw, 160px);
    line-height: 1.15;
    text-transform: uppercase;
    overflow: visible;
}

.portfolio h2 span,
.about h2 span {
    color: #080808;
    -webkit-text-stroke: 4px white;
    paint-order: stroke fill;
    overflow: visible;
}

.section-intro {
    max-width: 350px;
    color: #888;
    line-height: 1.7;
    font-size: 13px;
}

/* =========================
GALLERY
========================= */

.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 15px;
}

.gallery img {
    width: 100%;
    aspect-ratio: 16 / 9; 
    height: auto;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}

.gallery img:hover {
    transform: scale(1.02);
    filter: brightness(0.75);
}

/* =========================
ABOUT
========================= */

.about {

padding: 170px 8%;

display: grid;

grid-template-columns: 1fr 1fr;

gap: 100px;

}

.about h2 span {

color: transparent;

-webkit-text-stroke: 1px white;

}

.about-text {

padding-top: 70px;

max-width: 500px;

}

.about-text p {

color: #999;

font-size: 18px;

line-height: 1.7;

margin-bottom: 25px;

}

.instagram-link {

display: inline-block;

margin-top: 20px;

color: white;

text-decoration: none;

font-size: 12px;

letter-spacing: 3px;

border-bottom: 1px solid #444;

padding-bottom: 8px;

transition: 0.3s;

}

.instagram-link {

color: #ff3030;

border-color: #ff3030;

}

/* =========================
CONTACT
========================= */

.contact {

min-height: 80vh;

padding: 170px 8%;

display: flex;

flex-direction: column;

justify-content: center;

align-items: center;

text-align: center;

}

.contact h2 {

font-family: "Barlow Condensed", sans-serif;

font-size: clamp(90px, 13vw, 190px);

line-height: 0.75;

margin-bottom: 40px;

}

.contact h2 span {

color: transparent;

-webkit-text-stroke: 1px white;

}

.contact > p {

color: #888;

margin-bottom: 35px;

}

/* =========================
FOOTER
========================= */

footer {

padding: 35px 60px;

border-top: 1px solid #222;

display: flex;

justify-content: space-between;

align-items: center;

color: #666;

font-size: 10px;

letter-spacing: 2px;

}

footer div {

color: white;

font-family: "Barlow Condensed", sans-serif;

font-size: 20px;

}

footer a {

color: #888;

text-decoration: none;

transition: 0.3s;

}

footer a {

color: #ff3030;

}

/* =========================
LIGHTBOX
========================= */

.lightbox {

position: fixed;

top: 0;
left: 0;

width: 100%;
height: 100%;

background: rgba(0, 0, 0, 0.96);

display: flex;

justify-content: center;

align-items: center;

z-index: 1000;

opacity: 0;

visibility: hidden;

transition:
    opacity 0.3s ease,
    visibility 0.3s ease;

}

.lightbox.active {

opacity: 1;

visibility: visible;

}

.lightbox img {

max-width: 85%;

max-height: 85vh;

object-fit: contain;

transform: scale(0.95);

transition: transform 0.3s ease;

}

.lightbox.active img {

transform: scale(1);

}

.lightbox button {

position: absolute;

border: none;

background: none;

color: white;

cursor: pointer;

font-size: 50px;

transition: opacity 0.2s;

z-index: 1001;

}

.lightbox button {

opacity: 0.5;

}

.lightbox-close {

top: 25px;

right: 40px;

font-size: 45px !important;

}

.lightbox-prev {

left: 40px;

}

.lightbox-next {

right: 40px;

}

/* =========================
MOBILE
========================= */

@media (max-width: 700px) {

header {

    padding: 20px;

}

nav {

    gap: 15px;

}

nav a {

    font-size: 9px;

    letter-spacing: 1px;

}


.hero {

    padding-left: 25px;

    background-position: center;

}

.hero-content {

    margin-left: 0;

}

.hero h2 {

    font-size: 70px;

}

.hero-label {

    font-size: 9px;

    letter-spacing: 2px;

}

.hero-location {

    right: 25px;

    bottom: 30px;

}


.portfolio {

    padding: 100px 25px;

}

.section-top {

    display: block;

    margin-bottom: 50px;

}

.section-intro {

    margin-top: 40px;

}

.gallery {

    grid-template-columns: 1fr;

}

.gallery img {

    grid-column: span 12 !important;

    height: 400px;

}


.about {

    padding: 100px 25px;

    display: block;

}

.about-text {

    padding-top: 50px;

}


.contact {

    padding: 120px 25px;

}


footer {

    padding: 30px 20px;

    flex-direction: column;

    gap: 15px;

}

}

/* =========================
   BOOKING FORM
========================= */

.contact {

    padding: 170px 8%;

    display: block;

    text-align: left;
}

.contact-header {

    max-width: 900px;

    margin-bottom: 100px;
}

.contact-header h2 {

    font-family: "Barlow Condensed", sans-serif;

    font-size: clamp(90px, 13vw, 190px);

    line-height: 0.75;

    margin-bottom: 40px;
}

.contact-header h2 span {

    color: transparent;

    -webkit-text-stroke: 1px white;
}

.contact-header > p:last-child {

    max-width: 450px;

    color: #888;

    line-height: 1.7;

    font-size: 14px;
}


/* FORM */

.booking-form {

    max-width: 1000px;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 45px 30px;
}


/* GROUP */

.form-group {

    display: flex;

    flex-direction: column;

    gap: 12px;
}

.form-group.full {

    grid-column: span 2;
}


/* LABEL */

.form-group label {

    font-size: 10px;

    letter-spacing: 3px;

    color: #777;
}


/* INPUTS */

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    padding: 16px 0;

    background: transparent;

    border: none;

    border-bottom: 1px solid #333;

    color: white;

    font-family: "Inter", sans-serif;

    font-size: 15px;

    outline: none;

    transition: border-color 0.3s;
}

.form-group textarea {

    resize: vertical;

    min-height: 150px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: #ff3030;
}


/* PLACEHOLDER */

.form-group input::placeholder,
.form-group textarea::placeholder {

    color: #444;
}


/* SELECT */

.form-group select {

    cursor: pointer;

    appearance: none;
}

.form-group select option {

    background: #111;

    color: white;
}


/* SUBMIT */

.submit-button {

    grid-column: span 2;

    justify-self: start;

    padding: 18px 30px;

    background: white;

    color: black;

    border: none;

    cursor: pointer;

    font-family: "Inter", sans-serif;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 2px;

    transition: 0.3s;
}

.submit-button:hover {

    background: #ff3030;

    color: white;

    transform: translateY(-3px);
}


/* MOBILE */

@media (max-width: 700px) {

    .contact {

        padding: 120px 25px;

    }

    .contact-header {

        margin-bottom: 70px;

    }

    .booking-form {

        grid-template-columns: 1fr;

        gap: 35px;

    }

    .form-group.full {

        grid-column: span 1;

    }

    .submit-button {

        grid-column: span 1;

        width: 100%;

    }

}
