@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@700&display=swap');

:root {
    --accent: #b45309;
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: var(--accent);
    color: white;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
}

h1, h2, h3 {
    font-family: 'Playfair Display', sans-serif;
}

/* Full Width */
.full-width {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

@media (min-width: 768px) {
    .full-width {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (min-width: 1280px) {
    .full-width {
        padding-left: 70px;
        padding-right: 70px;
    }
}

/* HERO */
.hero-bg {
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    position: relative;
}

/* Overlay premium */
.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0.95) 30%,
        rgba(255,255,255,0.6) 55%,
        rgba(255,255,255,0.1) 100%
    );
}

.hero-bg > div {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.1;
    color: #0f172a;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #1e2937;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.55rem;
    }
}

/* Buttons */
.btn-primary {
    background-color: var(--accent);
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(180, 83, 9, 0.3);
}

.btn-primary:hover {
    background-color: #92400e;
    transform: translateY(-3px) scale(1.02);
}

/* Navbar hover underline */
nav a {
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent);
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid #f8fafc;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.services-section {
    margin-top: -70px;
    position: relative;
    z-index: 20;
    padding-top: 40px;
    padding-bottom: 80px;
}

/* Distribution Section */
.distribution-section {
    background-image: url('/assets/images/block2.jpg');
    background-size: cover;
    background-position: center;
    padding: 140px 0;
    position: relative;
}

.distribution-section .distribution-content {
    max-width: 580px;
}

.distribution-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.distribution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.distribution-image:hover img {
    transform: scale(1.08);
}

/* Mobile fix */
@media (max-width: 768px) {
    .distribution-section {
        background-attachment: scroll;
    }
}