/* ===========================================================
   LAKE HOUSE DALARNA PREMIUM V2
   Part 1
=========================================================== */

:root{

--primary:#143042;
--secondary:#c5a46d;
--light:#f8f8f6;
--dark:#1d1d1d;
--text:#555;
--white:#ffffff;

--shadow:0 20px 50px rgba(0,0,0,.08);

--radius:22px;

--transition:.35s ease;

}

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;
background:var(--light);
color:var(--dark);
line-height:1.8;
overflow-x:hidden;

}

img{

max-width:100%;
display:block;

}

a{

text-decoration:none;

}

.container{

width:min(1200px,90%);
margin:auto;

}

/* ================================
   NAVIGATION
================================ */

.navbar{

position:fixed;

top:0;
left:0;

width:100%;

padding:28px 8%;

display:flex;

justify-content:space-between;

align-items:center;

z-index:999;

transition:.4s;

}

.navbar.scrolled{

background:white;

box-shadow:0 10px 35px rgba(0,0,0,.08);

padding:18px 8%;

}

.logo{

display:flex;

flex-direction:column;

}

.logo-title{

font-size:28px;

font-weight:700;

letter-spacing:1px;

color:white;

transition:.3s;

}

.logo-subtitle{

font-size:13px;

letter-spacing:3px;

text-transform:uppercase;

color:#e8e8e8;

margin-top:4px;

}

.navbar.scrolled .logo-title{

color:#111;

}

.navbar.scrolled .logo-subtitle{

color:#777;

}

.menu{

display:flex;

gap:40px;

align-items:center;

list-style:none;

}

.menu a{

color:white;

font-weight:500;

transition:.3s;

}

.navbar.scrolled .menu a{

color:#222;

}

.menu a:hover{

color:var(--secondary);

}

.book-btn{

background:var(--secondary);

color:white!important;

padding:14px 30px;

border-radius:50px;

font-weight:600;

transition:.35s;

}

.book-btn:hover{

transform:translateY(-3px);

box-shadow:0 15px 30px rgba(0,0,0,.18);

}

/* ================================
   HERO
================================ */

.hero{

height:100vh;

background:url("images/Hero.png");

background-size:cover;

background-position:center;

position:relative;

display:flex;

align-items:center;

justify-content:center;

text-align:center;

}

.hero-overlay{

position:absolute;

inset:0;

background:linear-gradient(

180deg,

rgba(0,0,0,.55),

rgba(0,0,0,.45),

rgba(0,0,0,.55)

);

}

.hero-content{

position:relative;

z-index:2;

max-width:900px;

padding:30px;

color:white;

}

.welcome{

letter-spacing:5px;

font-size:14px;

font-weight:600;

text-transform:uppercase;

margin-bottom:20px;

color:#f1e4c8;

}

.hero h1{

font-size:76px;

line-height:1.1;

margin-bottom:35px;

font-weight:700;

}

.hero-text{

font-size:22px;

max-width:760px;

margin:auto;

margin-bottom:50px;

font-weight:300;

}

/* ================================
   BUTTONS
================================ */

.hero-buttons{

display:flex;

justify-content:center;

gap:25px;

margin-bottom:70px;

flex-wrap:wrap;

}

.primary-btn{

background:var(--secondary);

color:white;

padding:18px 42px;

border-radius:60px;

font-size:18px;

font-weight:600;

transition:var(--transition);

}

.primary-btn:hover{

transform:translateY(-4px);

box-shadow:0 15px 30px rgba(0,0,0,.25);

}

.secondary-btn{

border:2px solid white;

padding:18px 42px;

border-radius:60px;

color:white;

font-size:18px;

transition:var(--transition);

}

.secondary-btn:hover{

background:white;

color:#111;

}

/* ================================
   HERO FACTS
================================ */

.hero-facts{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:20px;

margin-top:30px;

}

.hero-facts div{

background:rgba(255,255,255,.12);

backdrop-filter:blur(10px);

padding:25px;

border-radius:18px;

}

.hero-facts h3{

font-size:34px;

margin-bottom:6px;

color:white;

}

.hero-facts span{

font-size:15px;

letter-spacing:1px;

color:#ddd;

}
/* ===========================================================
   INTRO
=========================================================== */

.intro{

padding:140px 8%;

background:white;

}

.intro .container{

display:grid;

grid-template-columns:1.1fr .9fr;

gap:70px;

align-items:center;

}

.intro h2{

font-size:54px;

line-height:1.2;

margin-bottom:30px;

color:var(--primary);

}

.intro p{

font-size:18px;

color:var(--text);

margin-bottom:22px;

}

.intro-right img{

border-radius:24px;

box-shadow:var(--shadow);

transition:.5s;

}

.intro-right img:hover{

transform:scale(1.02);

}

/* ================================
   SECTION TITLES
================================ */

.section-title{

text-align:center;

margin-bottom:70px;

}

.section-title p{

letter-spacing:4px;

font-size:14px;

font-weight:600;

color:var(--secondary);

text-transform:uppercase;

margin-bottom:12px;

}

.section-title h2{

font-size:54px;

color:var(--primary);

}

/* ================================
   GALLERY
================================ */

.gallery-section{

padding:140px 8%;

background:#f4f5f6;

}

.gallery-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

grid-auto-rows:260px;

gap:18px;

}

.gallery-grid img{

width:100%;

height:100%;

object-fit:cover;

border-radius:22px;

cursor:pointer;

transition:.45s;

box-shadow:var(--shadow);

}

.gallery-grid img:hover{

transform:scale(1.04);

}

.gallery-grid img:nth-child(1){

grid-column:span 2;

grid-row:span 2;

}

.gallery-grid img:nth-child(5){

grid-column:span 2;

}

.gallery-grid img:nth-child(9){

grid-column:span 2;

}

/* ================================
   FEATURES
================================ */

.features{

padding:140px 8%;

background:white;

}

.feature-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

}

.feature-card{

background:white;

padding:45px;

border-radius:24px;

text-align:center;

transition:.35s;

box-shadow:0 20px 45px rgba(0,0,0,.06);

border:1px solid rgba(0,0,0,.05);

}

.feature-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.feature-icon{

width:80px;

height:80px;

margin:auto;

margin-bottom:25px;

display:flex;

align-items:center;

justify-content:center;

font-size:36px;

background:#f8f3ea;

border-radius:50%;

}

.feature-card h3{

font-size:28px;

margin-bottom:18px;

color:var(--primary);

}

.feature-card p{

font-size:17px;

color:var(--text);

line-height:1.8;

}
/* ===========================================================
   EXPLORE DALARNA
=========================================================== */

.explore{

padding:140px 8%;

background:#f7f7f5;

}

.explore-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.explore-card{

background:white;

padding:45px;

border-radius:22px;

box-shadow:var(--shadow);

transition:.35s;

border-top:4px solid transparent;

}

.explore-card:hover{

transform:translateY(-8px);

border-top:4px solid var(--secondary);

}

.explore-card h3{

font-size:28px;

margin-bottom:18px;

color:var(--primary);

}

.explore-card p{

font-size:17px;

color:var(--text);

line-height:1.8;

}

/* ================================
   BOOKING SECTION
================================ */

.booking-section{

position:relative;

padding:170px 8%;

background:url("images/Baksida i solnedgång.png");

background-size:cover;

background-position:center;

text-align:center;

}

.booking-overlay{

position:absolute;

inset:0;

background:rgba(10,20,30,.58);

}

.booking-content{

position:relative;

z-index:2;

max-width:850px;

margin:auto;

color:white;

}

.section-tag{

letter-spacing:4px;

font-size:14px;

font-weight:600;

color:#e9d7a6;

text-transform:uppercase;

margin-bottom:18px;

}

.booking-content h2{

font-size:62px;

line-height:1.15;

margin-bottom:30px;

}

.booking-content p{

font-size:21px;

line-height:1.9;

margin-bottom:50px;

}

.booking-button{

display:inline-block;

padding:22px 60px;

background:var(--secondary);

border-radius:60px;

color:white;

font-size:19px;

font-weight:600;

transition:.35s;

}

.booking-button:hover{

transform:translateY(-5px);

box-shadow:0 20px 45px rgba(0,0,0,.3);

}

/* ================================
   LOCATION
================================ */

.location{

padding:140px 8%;

background:white;

}

.location-wrapper{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.location-text h3{

font-size:38px;

margin-bottom:25px;

color:var(--primary);

}

.location-text p{

font-size:18px;

margin-bottom:20px;

color:var(--text);

}

.location-text ul{

list-style:none;

margin-top:30px;

}

.location-text li{

padding:12px 0;

font-size:18px;

color:#444;

border-bottom:1px solid #ececec;

}

.map-placeholder{

overflow:hidden;

border-radius:24px;

box-shadow:var(--shadow);

height:520px;

}

.map-placeholder iframe{

width:100%;

height:100%;

border:none;

}

/* ================================
   SOCIAL
================================ */

.social-section{

padding:140px 8%;

background:#f4f5f6;

}

.social-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.social-card{

background:white;

padding:45px 35px;

text-align:center;

border-radius:22px;

box-shadow:var(--shadow);

transition:.35s;

color:#222;

}

.social-card:hover{

transform:translateY(-10px);

}

.social-card h3{

font-size:28px;

margin-bottom:18px;

color:var(--primary);

}

.social-card p{

font-size:16px;

line-height:1.8;

color:var(--text);

}
/* ===========================================================
   FOOTER
=========================================================== */

footer{

background:#0f1720;

color:white;

padding:90px 8% 50px;

text-align:center;

}

.footer-content{

max-width:900px;

margin:auto;

}

.footer-content h2{

font-size:42px;

margin-bottom:12px;

}

.footer-content>p{

font-size:18px;

color:#d0d0d0;

margin-bottom:18px;

}

.footer-links{

display:flex;

justify-content:center;

gap:35px;

margin:45px 0;

flex-wrap:wrap;

}

.footer-links a{

color:white;

font-size:17px;

transition:.3s;

}

.footer-links a:hover{

color:var(--secondary);

}

.copyright{

margin-top:40px;

font-size:15px;

color:#999;

}

/* ===========================================================
   ANIMATIONS
=========================================================== */

.fade-up{

opacity:0;

transform:translateY(40px);

transition:1s ease;

}

.fade-up.show{

opacity:1;

transform:translateY(0);

}

.zoom{

overflow:hidden;

border-radius:22px;

}

.zoom img{

transition:1.2s;

}

.zoom:hover img{

transform:scale(1.08);

}

/* ===========================================================
   SCROLLBAR
=========================================================== */

::-webkit-scrollbar{

width:12px;

}

::-webkit-scrollbar-track{

background:#f4f4f4;

}

::-webkit-scrollbar-thumb{

background:var(--secondary);

border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:#a8874d;

}

/* ===========================================================
   MOBILE
=========================================================== */

@media(max-width:1200px){

.hero h1{

font-size:58px;

}

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

.feature-grid{

grid-template-columns:repeat(2,1fr);

}

.explore-grid{

grid-template-columns:repeat(2,1fr);

}

.social-grid{

grid-template-columns:repeat(2,1fr);

}

.hero-facts{

grid-template-columns:repeat(2,1fr);

}

.location-wrapper{

grid-template-columns:1fr;

}

.intro .container{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.navbar{

padding:18px 22px;

flex-direction:column;

gap:18px;

}

.menu{

flex-wrap:wrap;

justify-content:center;

gap:18px;

}

.logo{

text-align:center;

}

.logo-title{

font-size:24px;

}

.logo-subtitle{

font-size:11px;

letter-spacing:2px;

}

.hero{

padding:0 20px;

}

.hero h1{

font-size:42px;

}

.hero-text{

font-size:18px;

}

.hero-buttons{

flex-direction:column;

}

.primary-btn,

.secondary-btn,

.booking-button{

width:100%;

text-align:center;

}

.hero-facts{

grid-template-columns:1fr;

}

.gallery-grid{

grid-template-columns:1fr;

}

.gallery-grid img{

grid-column:auto!important;

grid-row:auto!important;

height:260px;

}

.feature-grid{

grid-template-columns:1fr;

}

.explore-grid{

grid-template-columns:1fr;

}

.social-grid{

grid-template-columns:1fr;

}

.section-title h2{

font-size:36px;

}

.intro h2{

font-size:36px;

}

.booking-content h2{

font-size:40px;

}

.location-text h3{

font-size:30px;

}

.footer-links{

flex-direction:column;

gap:18px;

}

}

/* ===========================================================
   SMALL FINISH
=========================================================== */

::selection{

background:var(--secondary);

color:white;

}

section{

overflow:hidden;

}

.primary-btn,
.secondary-btn,
.booking-button,
.book-btn{

cursor:pointer;

}

iframe{

display:block;

}

/* ===========================================================
   LIGHTBOX
=========================================================== */

#lightbox{
position:fixed;
inset:0;
background:rgba(0,0,0,.94);
display:flex;
justify-content:center;
align-items:center;
opacity:0;
pointer-events:none;
transition:.35s;
z-index:99999;
}

#lightbox.active{
opacity:1;
pointer-events:auto;
}

#lightbox img{
max-width:92%;
max-height:92%;
border-radius:18px;
box-shadow:0 30px 80px rgba(0,0,0,.45);
}

.menu a.active{
color:var(--secondary)!important;
}
