/* CSS Variables & Theme Tokens */
:root {
    /* Colors */
    --primary-color: #D4A373;
    /* Elegant Gold/Carmel */
    --primary-light: #E9EDC9;
    --secondary-color: #FAEDCD;
    /* Cream */
    --dark-bg: #1A1A1A;
    /* Soft Black */
    --text-main: #333333;
    --text-light: #777777;
    --white: #FFFFFF;
    --bg-light: #FEFAE0;
    /* Very light cream */
    --border-light: #E5E5E5;

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Base Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--dark-bg);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Animations Classes */
.reveal,
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    visibility: hidden;
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal.active,
.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled .logo-text,
.navbar.scrolled .nav-links a {
    color: var(--dark-bg);
}

.navbar.scrolled .logo-sub {
    color: var(--primary-color);
}

.navbar.scrolled .hamburger .bar {
    background-color: var(--dark-bg);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.logo-sub {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-top: -5px;
    transition: var(--transition-smooth);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links li a {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
}

.nav-links li a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
}

.nav-links li a:not(.btn):hover::after,
.nav-links li a.active:not(.btn)::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--white);
    transition: var(--transition-smooth);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-transparent {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-transparent:hover {
    background-color: var(--white);
    color: var(--dark-bg);
}

.btn-outline-nav {
    border: 1px solid var(--primary-color);
    color: var(--primary-color) !important;
    padding: 10px 24px;
}

.btn-outline-nav:hover {
    background-color: var(--primary-color);
    color: var(--white) !important;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 800px;
    background-image: url('assets/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 5rem;
    color: var(--white);
    margin-bottom: 20px;
    animation: slideDown 1s ease-out;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
    font-weight: 300;
    animation: fadeIn 1.5s ease-out 0.5s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeIn 1.5s ease-out 1s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0.7;
}

.scroll-indicator a:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Keyframes */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Sections Global */
section {
    padding: 100px 0;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 15px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 30px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header p {
    color: var(--text-light);
}

/* About Section */
.about {
    background-color: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-features {
    margin-top: 30px;
}

.about-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.about-features i {
    color: var(--primary-color);
    background: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

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

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--primary-color);
    color: var(--white);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 10px solid var(--bg-light);
    box-shadow: 0 10px 30px rgba(212, 163, 115, 0.4);
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.experience-badge .number {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Pricing Section */
.pricing-section {
    background-color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-category {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.pricing-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 163, 115, 0.15);
    border-color: rgba(212, 163, 115, 0.3);
}

.pricing-category-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--border-light);
}

.pricing-category-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.pricing-category-header h3 {
    font-size: 1.8rem;
    color: var(--dark-bg);
}

.pricing-list {
    flex-grow: 1;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.pricing-list li:last-child {
    border-bottom: none;
}

.pricing-list li.pricing-divider {
    justify-content: center;
    padding: 25px 0 10px;
    border-bottom: none;
}

.pricing-list li.pricing-divider span {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-item-info {
    display: flex;
    flex-direction: column;
    padding-right: 20px;
}

.pricing-item-info .name {
    font-weight: 500;
    color: var(--dark-bg);
}

.pricing-item-info .desc {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 2px;
}

.pricing-item-info .duration {
    font-size: 0.75rem;
    color: var(--primary-color);
    margin-top: 4px;
    font-weight: 600;
}

.pricing-list .price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
}

.gift-card-box {
    margin-top: 30px;
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.gift-card-box i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.gift-card-box p {
    font-size: 0.9rem;
    color: var(--text-main);
}

/* Quote Section */
.quote-section {
    background: linear-gradient(rgba(26, 26, 26, 0.85), rgba(26, 26, 26, 0.85)), url('assets/hero_bg.jpg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    padding: 120px 20px;
    text-align: center;
    color: var(--white);
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
}

.quote-content i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    opacity: 0.8;
}

.quote-content blockquote {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* Footer & Contact */
.footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-about p {
    color: #999;
    margin: 20px 0;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-bounce);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer h3 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer ul li {
    margin-bottom: 15px;
    color: #999;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 5px;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
    margin-bottom: 8px !important;
}

.footer-hours li:last-child {
    border-bottom: none;
}

.footer-hours span {
    color: var(--white);
    font-weight: 500;
}

.footer-bottom {
    background-color: #111;
    padding: 20px 0;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .about-grid {
        gap: 30px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        height: calc(100vh - 70px);
        padding: 40px 0;
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 16px 0;
    }

    .nav-links li a {
        color: var(--dark-bg);
        font-size: 1.2rem;
    }

    .navbar.scrolled .nav-links li a {
        color: var(--dark-bg);
    }

    .btn-outline-nav {
        margin-top: 20px;
    }

    /* Hero mobile fix */
    .hero {
        background-attachment: scroll;
        /* fixed ne mobile nuk funksionon ne iOS/Android */
        background-size: cover;
        background-position: center center;
        min-height: 100vh;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-overlay {
        background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.85));
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0 20px;
        width: 100%;
    }

    .hero-title {
        font-size: 3rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        margin-top: 40px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .experience-badge {
        bottom: -15px;
        right: -15px;
        width: 100px;
        height: 100px;
    }

    .quote-content blockquote {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 80%;
        text-align: center;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}