/* Custom Styles for Patagonia Ascents Sketch */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,700&family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #003366;
    --secondary-color: #0056b3;
    --dark-color: #121212;
    --light-gray: #f4f7f6;
    --overlay-color: rgba(0, 0, 0, 0.45);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    color: #444;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navbar */
.navbar {
    transition: var(--transition);
    padding: 0.8rem 0;
    background: rgba(0, 21, 41, 0.95) !important; /* Azul marino profundo corporativo */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

.navbar.scrolled {
    padding: 0.6rem 0;
    background: #001529 !important;
}

html {
    scroll-behavior: smooth;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin: 0 5px;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: #fff !important;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(var(--overlay-color), var(--overlay-color)), url('../../img/index/slider/slide1.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 10vw, 6rem); /* Grande pero equilibrado */
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 4px;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
}

/* Badge Estilizado */
.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 25px;
}

/* Botones con mismo Width */
.hero-btn-container .btn {
    width: 220px; /* Ancho fijo para simetría */
    margin: 5px;
}



/* Feature Sections (Text + Image) */
.section-image-container {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.section-image-container img {
    transition: var(--transition);
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: contain; /* Muestra la foto completa sin recortar si es necesario */
    background-color: #f8f9fa;
}

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

/* Subpage Hero */
.hero-section-sub {
    height: 50vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-section-sub::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
}

.hero-section-sub .container {
    position: relative;
    z-index: 2;
}

/* Cards */
.card {
    border: none;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Buttons */
.btn {
    border-radius: 0;
    padding: 12px 30px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.6) !important;
}

.hover-white:hover {
    color: #fff !important;
    padding-left: 5px;
    transition: all 0.3s ease;
}

footer .fab {
    transition: var(--transition);
}

footer .fab:hover {
    transform: translateY(-3px);
    color: var(--secondary-color) !important;
}

