/* GLOBAL */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #111;
    color: #fff;
}

p {
    font-family: 'Montserrat', sans-serif;
}

button,
.btn,
.contact-btn,
.instagram-btn,
.btn-discover {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}

h5 {
    font-family: 'Montserrat', sans-serif;
}

/* NAVBAR */
.custom-navbar {
    font-family: 'Montserrat', sans-serif;
    background: transparent;
    transition: 0.3s ease;
}

.custom-navbar.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
}

.custom-navbar .navbar-brand,
.custom-navbar .nav-link {
    color: #DCCBB6 !important;
}

.custom-navbar .nav-link:hover {
    color: #ffffff !important;
}

.navbar-toggler {
    border-color: #DCCBB6;
}

.navbar-toggler-icon {
    filter: invert(80%) sepia(20%) saturate(200%) hue-rotate(350deg);
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    background: url('../img/hero.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

.btn-discover {
    padding: 12px 40px;
    border-radius: 40px;
    font-size: 1rem;
    border: 1px solid #DCCBB6;
    color: #DCCBB6;
    background: transparent;
    transition: 0.3s ease;
}

.btn-discover:hover {
    background: #DCCBB6;
    color: #412E1F;
}


.hero-quote {
    position: absolute;
    right: 40px;
    bottom: 60px;
    transform: rotate(-90deg);
    font-style: italic;
    opacity: 0.7;
    font-size: 1rem;
}

.hero h1,
.hero p {
    color: #DCCBB6;
}


/* STORY SECTION */
.story-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #6E4023, #8a5a35);
    color: #DCCBB6;
}

.story-text h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 500;
    color: #DCCBB6;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #DCCBB6;
    opacity: 0.9;
}

.story-image img {
    width: 100%;
    transition: transform 0.6s ease;
}

.story-image:hover img {
    transform: scale(1.03);
}


.small-img {
    height: 100%;
}

.big-img {
    height: 100%;
}

/* COLLECTION SECTION */
.collection-section {
    padding: 120px 0;
    background: #f3eadf;
    color: #412E1F;
}

.collection-header {
    margin-bottom: 70px;
}

.collection-header h2 {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.collection-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    opacity: 0.8;
}

.collection-card {
    overflow: hidden;
    border-radius: 5px;
}

.collection-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tall-card img {
    height: 500px;
}

.collection-card:hover img {
    transform: scale(1.05);
}

.collection-title {
    margin-top: 15px;
    font-size: 1rem;
    color: #412E1F;
}

/* SCENTS SECTION */
.scents-section {
    padding: 120px 0;
    background: #f6efe6;
    color: #412E1F;
}

.scents-header {
    margin-bottom: 70px;
}

.scents-header h2 {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.scents-header p {
    font-size: 1.1rem;
    opacity: 0.8;
}

.scent-card {
    overflow: hidden;
    border-radius: 5px;
}

.scent-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.scent-card:hover img {
    transform: scale(1.05);
}

.scent-title {
    margin-top: 15px;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

/* EXPERIENCE SECTION */
.experience-section {
    padding: 120px 0;
    background: #f6efe6;
    color: #412E1F;
}

/* SOL TARAF */
.experience-left {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.experience-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.experience-left:hover img {
    transform: scale(1.05);
}

.experience-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.2));
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px;
    color: #DCCBB6;
}

.experience-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 15px;
}

.experience-overlay p {
    font-size: 1rem;
    opacity: 0.85;
}

/* SAĞ TARAF */
.experience-right-image img {
    width: 100%;
    border-radius: 5px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.experience-right-image:hover img {
    transform: scale(1.05);
}

.experience-right-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 15px;
}

.experience-right-text p {
    font-size: 1rem;
    opacity: 0.8;
}

/* CONTACT SECTION */
.contact-section {
    padding: 120px 0;
    background: #6E4023;
    color: #412E1F;
}

.contact-wrapper {
    background: #f6efe6;
    border-radius: 5px;
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: visible;
    padding: 80px;
}

/* SOL TARAF */
.contact-form {
    width: 55%;
}

.contact-form h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-form p {
    margin-bottom: 40px;
    opacity: 0.8;
}

.form-group {
    margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #6E4023;
    background: transparent;
    padding: 10px 0;
    font-size: 1rem;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom: 2px solid #6E4023;
}

/* BUTON */
.contact-btn {
    width: 100%;
    margin-top: 30px;
    padding: 14px 0;
    border-radius: 40px;
    border: 1px solid #6E4023;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: 0.3s ease;
}


.contact-btn:hover {
    background: #412E1F;
    color: #fff;
}

/* SAĞ GÖRSEL */
.contact-image {
    width: 45%;
    position: relative;
}

.contact-image img {
    width: 100%;
    border-radius: 5px;
    position: absolute;
    top: -40px;
    right: -40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
        padding: 40px;
    }

    .contact-form,
    .contact-image {
        width: 100%;
    }

    .contact-image img {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 40px;
    }
}

.instagram-section {
    min-height: 500px;
    padding: 250px 0 250px 0;
    background: #f3eadf;
    position: relative;
    overflow: hidden;
}


/* Hafif dekoratif daire */
.instagram-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(58, 47, 37, 0.08);
    border-radius: 50%;
    left: 5%;
    top: 20%;
    z-index: 0;
}

.instagram-center {
    max-width: 520px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.instagram-center p {
    font-size: 1.15rem;
    color: #6E4023;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* BUTON */
.instagram-btn {
    padding: 14px 50px;
    border-radius: 50px;
    border: 1px solid #6E4023;
    text-decoration: none;
    color: #6E4023;
    font-weight: 500;
    transition: all 0.3s ease;
}

.instagram-btn:hover {
    background: #6E4023;
    color: #fff;
}

.instagram-center {
    max-width: 520px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    transform: translateY(20px);
}

/* POLAROID */
.polaroid {
    position: absolute;
    width: 260px;
    background: #ffffff;
    padding: 18px 18px 45px 18px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    z-index: 2;
    transition: transform 0.4s ease;
}

.polaroid img {
    width: 100%;
    display: block;
    border-radius: 4px;
}

/* ICON BAR */
.polaroid-icons {
    position: absolute;
    bottom: 10px;
    left: 15px;
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #6E4023;
    opacity: 0.7;
}

/* Pozisyonlar – görsele göre */
.polaroid-1 {
    top: 40px;
    left: 60px;
    transform: rotate(-10deg);
}

.polaroid-2 {
    top: 80px;
    right: 120px;
    transform: rotate(8deg);
}

.polaroid-3 {
    bottom: 60px;
    left: 140px;
    transform: rotate(6deg);
}

.polaroid-4 {
    bottom: 40px;
    right: 180px;
    transform: rotate(-8deg);
}

/* Hover */
.polaroid:hover {
    transform: rotate(0deg) scale(1.05);
}

@media (max-width: 992px) {

    .polaroid {
        position: relative;
        transform: none !important;
        margin: 30px auto;
        display: block;
    }

    .instagram-section {
        padding: 100px 0;
    }
}

@media (max-width: 992px) {

    .polaroid {
        position: relative;
        transform: none !important;
        margin: 30px auto;
        display: block;
    }

    .instagram-section {
        padding: 100px 0;
    }
}

/* FOOTER */
.footer-section {
    background: #f6efe6;
    padding: 80px 0 40px 0;
    border-top: 1px solid #e5ddd3;
    color: #412E1F;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 10px;
}

.footer-brand p {
    opacity: 0.7;
}

.footer-links h5,
.footer-contact h5 {
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #412E1F;
    transition: 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.6;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    margin-top: 60px;
    font-size: 0.9rem;
    opacity: 0.6;
}

.footer-links a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: 0.3px;
}
