/* ==========================
   Villa Tülüşah
   Luxury Theme v1.0
========================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root{
    --green:#1f5c42;
    --green-dark:#143c2c;
    --gold:#d5b46a;
    --sand:#f6f2ea;
    --white:#ffffff;
    --text:#2f2f2f;
    --shadow:0 20px 50px rgba(0,0,0,.15);
    --radius:20px;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    color:var(--text);
    background:var(--sand);
    line-height:1.7;
}

a{
    text-decoration:none;
}

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

/* HEADER */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:22px 8%;

    backdrop-filter:blur(20px);
    background:rgba(255,255,255,.15);

    border-bottom:1px solid rgba(255,255,255,.25);
}

.logo{
    font-family:'Playfair Display',serif;
    color:white;
    font-size:34px;
    font-weight:700;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    color:white;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:var(--gold);
}

/* HERO */

.hero{

    min-height:100vh;

    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:center;

    text-align:center;

    padding:120px 30px;

    background:
linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
url("images/hero.jpg");

    background-size:cover;
    background-position:center;
}

.hero h1{

    font-family:'Playfair Display';

    color:white;

    font-size:74px;

    margin-bottom:20px;

}

.hero p{

    color:white;

    font-size:23px;

    max-width:700px;

    margin-bottom:50px;

}

/* BUTTONS */

.buttons{

display:flex;

flex-wrap:wrap;

justify-content:center;

gap:18px;

}

.btn{

padding:18px 34px;

border-radius:999px;

font-weight:600;

transition:.35s;

box-shadow:var(--shadow);

}

.airbnb{

background:#FF385C;

color:white;

}

.booking{

background:#003580;

color:white;

}

.maps{

background:#34A853;

color:white;

}

.btn:hover{

transform:translateY(-5px);

}/* ==========================
   SECTIONS
========================== */

section{
    padding:100px 8%;
}

section h2{
    font-family:'Playfair Display',serif;
    font-size:46px;
    color:var(--green-dark);
    text-align:center;
    margin-bottom:25px;
}

section p{
    max-width:850px;
    margin:auto;
    text-align:center;
    font-size:18px;
    color:#555;
}

/* ABOUT */

#about{
    background:white;
}

/* GALLERY */

#gallery{
    background:#f8f6f1;
}

.gallery-grid{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.gallery-item{
    height:260px;
    border-radius:20px;
    overflow:hidden;
    background:#ddd;
    box-shadow:var(--shadow);
    transition:.35s;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.gallery-item:hover{
    transform:translateY(-8px);
}

.gallery-item:hover img{
    transform:scale(1.08);
}

/* GUIDE */

#guide{
    background:white;
}

#guide a{
    display:inline-block;
    margin-top:25px;
    background:var(--green);
    color:white;
    padding:16px 34px;
    border-radius:999px;
    font-weight:600;
    transition:.3s;
}

#guide a:hover{
    background:var(--green-dark);
}

/* CONTACT */

#contact{
    background:#f8f6f1;
}

.contact-box{
    max-width:900px;
    margin:40px auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.contact-card{
    background:white;
    border-radius:20px;
    padding:30px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.3s;
}

.contact-card:hover{
    transform:translateY(-8px);
}

.contact-card h3{
    color:var(--green-dark);
    margin-bottom:15px;
}

/* FOOTER */

footer{
    background:var(--green-dark);
    color:white;
    text-align:center;
    padding:45px 20px;
    font-size:15px;
}

/* FLOATING WHATSAPP */

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    transition:.3s;
    z-index:9999;
}

.whatsapp:hover{
    transform:scale(1.12);
}

/* MOBILE */

@media(max-width:768px){

header{
    flex-direction:column;
    gap:18px;
}

.logo{
    font-size:28px;
}

nav{
    gap:18px;
    flex-wrap:wrap;
    justify-content:center;
}

.hero h1{
    font-size:46px;
}

.hero p{
    font-size:19px;
}

.buttons{
    flex-direction:column;
    width:100%;
}

.btn{
    width:100%;
    max-width:340px;
}

section{
    padding:70px 25px;
}

section h2{
    font-size:34px;
}

}/* ==========================
   PREMIUM EFFECTS v1.0
========================== */

/* Fade In Animation */

@keyframes fadeUp{

0%{
opacity:0;
transform:translateY(40px);
}

100%{
opacity:1;
transform:translateY(0);
}

}

.hero h1{

animation:fadeUp 1s ease;

}

.hero p{

animation:fadeUp 1.3s ease;

}

.buttons{

animation:fadeUp 1.6s ease;

}

/* Cards */

.card{

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

backdrop-filter:blur(18px);

border-radius:24px;

padding:35px;

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

transition:.35s;

}

.card:hover{

transform:translateY(-10px);

box-shadow:0 35px 80px rgba(0,0,0,.18);

}

/* Glass Navigation */

header{

transition:.4s;

}

header:hover{

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

}

/* Buttons */

.btn{

letter-spacing:.4px;

font-size:17px;

}

.btn:hover{

filter:brightness(108%);

}

/* Golden Line */

.divider{

width:120px;

height:4px;

background:var(--gold);

margin:25px auto 60px;

border-radius:50px;

}

/* Image Hover */

.gallery-item{

position:relative;

cursor:pointer;

}

.gallery-item::after{

content:"View";

position:absolute;

left:50%;

top:50%;

transform:translate(-50%,-50%);

background:rgba(0,0,0,.65);

color:white;

padding:12px 26px;

border-radius:999px;

opacity:0;

transition:.35s;

font-weight:600;

}

.gallery-item:hover::after{

opacity:1;

}

/* Footer */

footer p{

opacity:.9;

}

footer a{

color:white;

margin:0 12px;

transition:.3s;

}

footer a:hover{

color:var(--gold);

}

/* Scrollbar */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#efe9dc;

}

::-webkit-scrollbar-thumb{

background:var(--green);

border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:var(--green-dark);

}

/* Selection */

::selection{

background:var(--gold);

color:white;

}

/* Smooth Appearance */

section{

animation:fadeUp .8s ease;

}

/* Hero Overlay */

.hero::before{

content:"";

position:absolute;

left:0;

top:0;

right:0;

bottom:0;

background:linear-gradient(to bottom,
rgba(0,0,0,.35),
rgba(0,0,0,.55));

z-index:0;

}

.hero>*{

position:relative;

z-index:2;

}

/* Luxury Title */

.hero h1{

text-shadow:0 8px 30px rgba(0,0,0,.45);

}

/* Luxury Paragraph */

.hero p{

opacity:.95;

}

/* Premium Footer */

footer{

border-top:5px solid var(--gold);

}