/* ==========================================================
   NORWEGIAINFO STYLE.CSS v2.1
   ETAP 1
   RESET • VARIABLES • GLOBAL • LAYOUT • TYPOGRAPHY
========================================================== */

/* ==========================================================
   RESET
========================================================== */

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

html{
    scroll-behavior:smooth;
    -webkit-text-size-adjust:100%;
}

body{
    font-family:"Poppins",sans-serif;
    font-size:16px;
    line-height:1.75;
    color:#111827;
    background:#f6f8fb;
    overflow-x:hidden;
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

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

picture{
    display:block;
}

a{
    color:inherit;
    text-decoration:none;
    transition:.3s ease;
}

button,
input,
textarea,
select{
    font:inherit;
}

button{
    border:none;
    background:none;
    cursor:pointer;
}

table{
    border-collapse:collapse;
    border-spacing:0;
}

ul,
ol{
    margin:0;
    padding-left:22px;
}

:focus-visible{
    outline:3px solid rgba(186,12,47,.25);
    outline-offset:4px;
}

/* ==========================================================
   VARIABLES
========================================================== */

:root{

    --red:#ba0c2f;
    --red-dark:#960a27;

    --blue:#00205b;
    --blue-dark:#00163d;

    --dark:#111827;
    --gray:#6b7280;
    --gray-light:#9ca3af;

    --light:#f6f8fb;
    --white:#ffffff;

    --success:#16a34a;
    --warning:#d97706;
    --info:#2563eb;

    --border:#e5e7eb;

    --radius-xs:10px;
    --radius-sm:18px;
    --radius:24px;
    --radius-lg:34px;

    --shadow-sm:
        0 10px 24px rgba(0,0,0,.05);

    --shadow:
        0 18px 45px rgba(0,0,0,.08);

    --shadow-lg:
        0 30px 70px rgba(0,0,0,.14);

    --transition:.35s ease;

}

/* ==========================================================
   GLOBAL
========================================================== */

::selection{
    background:var(--red);
    color:white;
}

body::-webkit-scrollbar{
    width:10px;
}

body::-webkit-scrollbar-thumb{
    background:var(--red);
    border-radius:999px;
}

body::-webkit-scrollbar-track{
    background:#edf1f5;
}

main{
    display:block;
}

section{
    padding:110px 0;
}

.container{
    width:min(1320px,92%);
    margin-inline:auto;
}

.container-small{
    width:min(920px,92%);
    margin-inline:auto;
}

.bg-white{
    background:var(--white);
}

.bg-light{
    background:var(--light);
}

.text-center{
    text-align:center;
}

.hidden{
    display:none!important;
}

/* ==========================================================
   TYPOGRAPHY
========================================================== */

h1,
h2,
h3,
h4,
h5,
h6{

    color:var(--dark);
    font-weight:700;
    line-height:1.2;

}

h1{

    font-size:clamp(48px,6vw,82px);

}

h2{

    font-size:clamp(34px,4vw,52px);

}

h3{

    font-size:30px;

}

h4{

    font-size:22px;

}

p{

    color:#374151;
    margin-bottom:20px;

}

small{

    color:var(--gray);

}

.lead{

    font-size:22px;
    line-height:1.9;
    color:#4b5563;

}

.section-title{

    text-align:center;
    margin-bottom:70px;

}

.section-title span{

    display:inline-block;

    color:var(--red);

    font-size:14px;

    letter-spacing:2px;

    font-weight:700;

    text-transform:uppercase;

    margin-bottom:15px;

}

.section-title h2{

    margin-bottom:20px;

}

.section-title p{

    max-width:760px;

    margin:0 auto;

    color:var(--gray);

}

/* ==========================================================
   GRID
========================================================== */

.grid-2{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:70px;
    align-items:center;

}

.grid-3{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;

}

.grid-4{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

/* ==========================================================
   BUTTONS
========================================================== */

.btn-main{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:17px 34px;

    background:var(--red);

    color:white;

    border-radius:999px;

    font-weight:600;

    box-shadow:
        0 12px 30px rgba(186,12,47,.25);

    transition:var(--transition);

}

.btn-main:hover{

    background:var(--red-dark);

    transform:translateY(-4px);

}

.btn-outline{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:17px 34px;

    border:2px solid var(--blue);

    color:var(--blue);

    border-radius:999px;

    font-weight:600;

    transition:var(--transition);

}

.btn-outline:hover{

    background:var(--blue);

    color:white;

}

.btn-light{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:17px 34px;

    border-radius:999px;

    border:2px solid rgba(255,255,255,.8);

    color:white;

    backdrop-filter:blur(12px);

    transition:var(--transition);

}

.btn-light:hover{

    background:white;

    color:var(--blue);

}
/* ==========================================================
   NORWEGIAINFO STYLE.CSS v2.1
   ETAP 2
   TOPBAR • NAVBAR • HOME HERO
========================================================== */

/* ==========================================================
   TOPBAR
========================================================== */

.topbar{
    display:block;
    background:#fff;
    border-bottom:1px solid #e5e7eb;
    padding:8px 0;
}

.topbar .container{
    display:flex;
    align-items:center;
    gap:12px;
}

.topbar-content{
    display:flex;
    gap:12px;
    align-items:center;
    flex:1;
    flex-wrap:wrap;
}

.topbar .weather-box,
.topbar .currency-box{
    background:#f4f6f9;
    border:1px solid #e5e7eb;
    border-radius:10px;
    padding:7px 14px;
    gap:10px;
    backdrop-filter:none;
}

.topbar .weather-box i,
.topbar .currency-box i{
    color:var(--red);
}

.topbar .widget-label{
    color:#6b7280;
}

.topbar .widget-value{
    color:#1f2937;
    font-weight:600;
}

.topbar .topbar-social{
    margin-left:auto;
    font-size:20px;
    color:#1f2937;
    flex-shrink:0;
}

/* ==========================================================
   NAVBAR BRAND + INSTAGRAM
========================================================== */

.navbar-instagram{
    display:flex;
    align-items:center;
    font-size:22px;
    background:linear-gradient(45deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
    transition:opacity 0.2s;
    line-height:1;
}

.navbar-instagram:hover{
    opacity:0.75;
}

/* ==========================================================
   NAVBAR WIDGETS (prawa strona navbara)
========================================================== */

.navbar-widgets{
    display:flex;
    flex-direction:column;
    gap:4px;
    flex-shrink:0;
}

.navbar-widgets .weather-box,
.navbar-widgets .currency-box{
    padding:5px 12px;
    gap:10px;
    border-radius:8px;
}

.navbar-widgets .weather-box i,
.navbar-widgets .currency-box i{
    font-size:16px;
}

.navbar-widgets .widget-label{
    font-size:9px;
}

.navbar-widgets .widget-value{
    font-size:12px;
}

.weather-box,
.currency-box{

    display:flex;

    align-items:center;

    gap:12px;

    background:rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.1);

    border-radius:10px;

    padding:8px 16px;

    backdrop-filter:blur(6px);

    transition:background 0.2s;

}

.weather-box:hover,
.currency-box:hover{

    background:rgba(255,255,255,0.1);

}

.weather-box i,
.currency-box i{

    color:#fbbf24;

    font-size:20px;

}

.weather-details,
.currency-details{

    display:flex;

    flex-direction:column;

    line-height:1.3;

}

.widget-label{

    font-size:10px;

    text-transform:uppercase;

    letter-spacing:0.08em;

    color:rgba(255,255,255,0.5);

}

.widget-value{

    font-size:13px;

    font-weight:600;

    color:#fff;

}

.widget-loading{

    display:inline-block;

    width:60px;

    height:10px;

    background:linear-gradient(90deg,rgba(255,255,255,0.1) 25%,rgba(255,255,255,0.25) 50%,rgba(255,255,255,0.1) 75%);

    background-size:200% 100%;

    border-radius:4px;

    animation:shimmer 1.4s infinite;

}

@keyframes shimmer{

    0%{background-position:200% 0}

    100%{background-position:-200% 0}

}

/* ==========================================================
   NAVBAR
========================================================== */

.home-navbar{

    position:relative;

    width:100%;

    z-index:1000;

    background:var(--blue);

}

.page-navbar{

    position:sticky;

    top:0;

    width:100%;

    z-index:1000;

    background:#08111f;

    border-bottom:1px solid rgba(255,255,255,0.08);

    box-shadow:var(--shadow-sm);

}

.navbar-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:90px;

    gap:32px;

}

.logo{

    display:flex;

    align-items:center;

    gap:8px;

    font-size:34px;

    font-weight:800;

}

.logo-red{

    color:var(--red);

}

.logo-divider{

    color:#d1d5db;

}

.home-navbar .logo-divider{

    color:white;

}

.logo-blue{

    color:var(--blue);

}

.home-navbar .logo-blue{

    color:white;

}

.navbar-menu{

    display:flex;

    align-items:center;

    gap:34px;

    list-style:none;

    padding:0;

}

.navbar-menu a{

    position:relative;

    font-weight:500;

}

.home-navbar .navbar-menu a{

    color:white;

}

.page-navbar .navbar-menu a{

    color:white;

}

.navbar-menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    transition:var(--transition);

}

.home-navbar .navbar-menu a::after{

    background:white;

}

.page-navbar .navbar-menu a::after{

    background:var(--red);

}

.navbar-menu a:hover::after{

    width:100%;

}

/* ==========================================================
   HOME HERO
========================================================== */

/* ===================== HERO WIDGETS ===================== */

.hero-widgets{
    display:flex;
    align-items:center;
    gap:0;
    background:rgba(0,0,0,0.45);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,0.15);
    border-radius:16px;
    padding:14px 24px;
    margin-bottom:32px;
    flex-wrap:wrap;
    gap:16px;
}

.hw-weather{
    display:flex;
    align-items:center;
    gap:20px;
    flex:1;
    min-width:220px;
}

.hw-weather-now{
    display:flex;
    align-items:center;
    gap:12px;
    flex-shrink:0;
}

.hw-icon{
    font-size:32px;
    color:#fbbf24;
}

.hw-weather-info{
    display:flex;
    flex-direction:column;
    gap:2px;
}

.hw-city-row{
    display:flex;
    align-items:center;
    gap:6px;
}

.hw-city{
    font-size:10px;
    text-transform:uppercase;
    letter-spacing:0.08em;
    color:rgba(255,255,255,0.6);
}

.hw-city-selector{
    position:relative;
}

.hw-city-btn{
    background:none;
    border:none;
    cursor:pointer;
    color:rgba(255,255,255,0.5);
    font-size:11px;
    padding:2px 4px;
    border-radius:4px;
    transition:color 0.2s;
    line-height:1;
}
.hw-city-btn:hover{ color:#fff; }

.hw-city-dropdown{
    display:none;
    position:absolute;
    top:calc(100% + 6px);
    left:0;
    background:rgba(10,20,50,0.95);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    border:1px solid rgba(255,255,255,0.15);
    border-radius:10px;
    padding:6px 0;
    min-width:140px;
    z-index:200;
    box-shadow:0 8px 24px rgba(0,0,0,0.4);
}
.hw-city-dropdown.open{ display:block; }

.hw-city-option{
    display:block;
    width:100%;
    background:none;
    border:none;
    color:rgba(255,255,255,0.75);
    font-family:inherit;
    font-size:13px;
    text-align:left;
    padding:7px 16px;
    cursor:pointer;
    transition:background 0.15s, color 0.15s;
}
.hw-city-option:hover{ background:rgba(255,255,255,0.1); color:#fff; }
.hw-city-option.active{ color:#fbbf24; font-weight:600; }

.hw-forecast{
    overflow-x:auto;
    scrollbar-width:none;
}
.hw-forecast::-webkit-scrollbar{ display:none; }

.hw-temp{
    font-size:18px;
    font-weight:700;
    color:#fff;
    line-height:1.2;
}

.hw-forecast{
    display:flex;
    gap:10px;
    align-items:center;
    flex-wrap:nowrap;
    overflow-x:auto;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
}
.hw-forecast::-webkit-scrollbar{ display:none; }

.hw-day{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:4px;
    padding:6px 10px;
    background:rgba(255,255,255,0.08);
    border-radius:10px;
    min-width:52px;
}

.hw-day-name{
    font-size:10px;
    color:rgba(255,255,255,0.6);
    text-transform:uppercase;
}

.hw-day i{
    font-size:14px;
    color:#fbbf24;
}

.hw-day-temp{
    font-size:12px;
    color:#fff;
    font-weight:600;
}

.hw-divider{
    width:1px;
    height:60px;
    background:rgba(255,255,255,0.2);
    flex-shrink:0;
}

.hw-currency{
    display:flex;
    gap:12px;
    align-items:center;
    flex-wrap:wrap;
}

.hw-rate{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:2px;
    padding:8px 14px;
    background:rgba(255,255,255,0.08);
    border-radius:10px;
    min-width:80px;
}

.hw-rate-pair{
    font-size:10px;
    color:rgba(255,255,255,0.6);
    text-transform:uppercase;
    letter-spacing:0.05em;
    white-space:nowrap;
}

.hw-rate-val{
    font-size:15px;
    font-weight:700;
    color:#fff;
}

/* ======================================================= */

.home-hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

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

    background-size:cover;

    background-position:center;

}

.home-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at top right,
    rgba(255,255,255,.15),
    transparent 45%);

}

.home-hero .container{

    position:relative;

    z-index:2;

}

.home-grid{

    display:grid;

    grid-template-columns:1fr;

    align-items:center;

    min-height:100vh;

}

.home-content{

    max-width:760px;

    color:white;

}

.home-content .hero-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    border-radius:999px;

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

    backdrop-filter:blur(14px);

    color:white;

    margin-bottom:30px;

}

.home-content h1{

    color:white;

    margin-bottom:28px;

    line-height:1.08;

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

}

.home-content .lead{

    color:#f3f4f6;

    max-width:700px;

    margin-bottom:45px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.home-scroll{

    position:absolute;

    left:50%;

    bottom:35px;

    transform:translateX(-50%);

    color:white;

    font-size:14px;

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:10px;

    opacity:.8;

}

.home-scroll i{

    animation:scrollDown 1.8s infinite;

}

@keyframes scrollDown{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(10px);

    }

    100%{

        transform:translateY(0);

    }

}
/* ==========================================================
   NORWEGIAINFO STYLE.CSS v2.1
   ETAP 3
   CARDS • NEWS • GUIDES • COMMON COMPONENTS
========================================================== */

/* ==========================================================
   UNIVERSAL CARD
========================================================== */

.card{

    background:var(--white);

    border-radius:var(--radius);

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.card-image{

    position:relative;

    overflow:hidden;

}

.card-image img{

    width:100%;

    aspect-ratio:16/9;

    object-fit:cover;

    transition:.5s ease;

}

.card:hover .card-image img{

    transform:scale(1.05);

}

.card-content{

    padding:30px;

}

.card-category{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:8px 18px;

    border-radius:999px;

    background:#eef3ff;

    color:var(--blue);

    font-size:13px;

    font-weight:700;

    margin-bottom:20px;

}

.card-title{

    font-size:28px;

    margin-bottom:16px;

    line-height:1.3;

}

.card-text{

    color:var(--gray);

    margin-bottom:24px;

}

.card-link{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--red);

    font-weight:700;

}

.card-link:hover{

    gap:16px;

}

/* ==========================================================
   NEWS
========================================================== */

.news-section{

    background:var(--light);

}

.news-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

    gap:35px;

}

.news-card{

    background:var(--white);

    border-radius:var(--radius);

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.news-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.news-card img{

    width:100%;

    aspect-ratio:16/9;

    object-fit:cover;

}

.news-content{

    padding:30px;

}

.news-category{

    display:inline-flex;

    align-items:center;

    padding:8px 16px;

    border-radius:999px;

    background:#eef3ff;

    color:var(--blue);

    font-size:13px;

    font-weight:700;

    margin-bottom:18px;

}

.news-content h3{

    margin-bottom:15px;

    font-size:28px;

}

.news-content p{

    color:var(--gray);

    margin-bottom:24px;

}

.news-content a{

    color:var(--red);

    font-weight:700;

}

.news-card-icon{

    width:100%;

    aspect-ratio:16/9;

    background:linear-gradient(135deg,#00205B 0%,#003080 100%);

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:12px;

}

.news-card-icon i{

    font-size:56px;

    color:rgba(255,255,255,.85);

}

.news-card-icon span{

    font-size:12px;

    font-weight:600;

    letter-spacing:.12em;

    text-transform:uppercase;

    color:rgba(255,255,255,.5);

}

/* ==========================================================
   GUIDE BOXES
========================================================== */

.guides-section{

    background:var(--white);

}

.guides-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.guide-box{

    padding:40px 34px;

    background:white;

    border-radius:var(--radius);

    text-align:center;

    color:var(--dark);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.guide-box:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.guide-box i{

    font-size:48px;

    color:var(--red);

    margin-bottom:24px;

}

.guide-box h4{

    margin-bottom:14px;

}

.guide-box p{

    color:var(--gray);

    margin:0;

}

/* ==========================================================
   SEARCH BAR
========================================================== */

.search-bar-wrap{
    display:flex;
    flex-direction:column;
    align-items:center;
    margin-bottom:48px;
}

.search-bar{
    display:flex;
    align-items:center;
    gap:12px;
    width:100%;
    max-width:520px;
    background:#f4f6f9;
    border:2px solid #e5e7eb;
    border-radius:50px;
    padding:12px 24px;
    transition:border-color 0.2s;
}

.search-bar:focus-within{
    border-color:var(--red);
}

.search-bar i{
    color:#9ca3af;
    font-size:16px;
    flex-shrink:0;
}

.search-bar input{
    border:none;
    background:none;
    outline:none;
    width:100%;
    font-size:15px;
    font-family:var(--font);
    color:#1f2937;
}

.search-bar input::placeholder{
    color:#9ca3af;
}

.search-no-results{
    margin-top:16px;
    color:#6b7280;
    font-size:15px;
}

/* ==========================================================
   COMMON SECTION SPACING
========================================================== */

.section-padding{

    padding:110px 0;

}

.section-small{

    padding:80px 0;

}

.section-large{

    padding:140px 0;

}
/* ==========================================================
   NORWEGIAINFO STYLE.CSS v2.1
   ETAP 4
   TRAVEL • GALLERY • ABOUT
========================================================== */

/* ==========================================================
   TRAVEL
========================================================== */

.travel-section{

    background:var(--light);

}

.travel-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:32px;

}

.travel-card{

    position:relative;

    overflow:hidden;

    border-radius:var(--radius);

    min-height:420px;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.travel-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.travel-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s ease;

}

.travel-card:hover img{

    transform:scale(1.08);

}

.travel-card::before,
.travel-card a::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.82),
        rgba(0,0,0,.25),
        transparent
    );

    z-index:1;

    pointer-events:none;

}

.travel-content{

    position:absolute;

    left:30px;

    right:30px;

    bottom:28px;

    z-index:2;

    color:white;

    pointer-events:none;

}

.travel-content a,
.travel-link{

    pointer-events:auto;

}

.travel-content h3{

    color:white;

    margin-bottom:12px;

    font-size:32px;

}

.travel-content p{

    color:#f3f4f6;

    margin:0 0 14px;

    display:-webkit-box;

    -webkit-line-clamp:2;

    -webkit-box-orient:vertical;

    overflow:hidden;

    min-height:3em;

}

.travel-link{

    display:inline-flex;

    align-items:center;

    gap:8px;

    font-size:13px;

    font-weight:600;

    color:#fff;

    border:1px solid rgba(255,255,255,0.4);

    border-radius:20px;

    padding:5px 14px;

    transition:background 0.2s, border-color 0.2s;

}

.travel-card:hover .travel-link{

    background:rgba(255,255,255,0.15);

    border-color:rgba(255,255,255,0.7);

}

.travel-card a{

    position:absolute;

    inset:0;

    display:block;

    color:inherit;

    text-decoration:none;

}

.travel-card a img{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s ease;

}

/* ==========================================================
   GALLERY
========================================================== */

.gallery-section{

    background:white;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:22px;

}

.gallery-item{

    overflow:hidden;

    border-radius:22px;

    box-shadow:var(--shadow-sm);

}

.gallery-item img{

    width:100%;

    aspect-ratio:1;

    object-fit:cover;

    transition:.5s ease;

    pointer-events:none;

    user-select:none;

    -webkit-user-drag:none;

    -webkit-touch-callout:none;

}

.gallery-item:hover img{

    transform:scale(1.06);

}

.gallery-item:hover{

    box-shadow:var(--shadow-lg);

}

.gallery-item{

    position:relative;

}

.gallery-item::after{

    content:"";

    position:absolute;

    inset:0;

    z-index:2;

    border-radius:22px;

}

.gallery-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 55%);

    opacity:0;

    transition:.3s ease;

    display:flex;

    align-items:flex-end;

    justify-content:space-between;

    padding:16px;

    border-radius:22px;

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

.gallery-label{

    color:#fff;

    font-size:13px;

    font-weight:600;

    letter-spacing:0.03em;

}

.vote-btn{

    display:flex;

    align-items:center;

    gap:6px;

    background:rgba(255,255,255,0.15);

    border:1px solid rgba(255,255,255,0.35);

    color:#fff;

    border-radius:20px;

    padding:5px 12px;

    font-size:13px;

    font-weight:600;

    cursor:pointer;

    transition:background .2s, transform .15s;

    backdrop-filter:blur(4px);

}

.vote-btn:hover{

    background:rgba(255,255,255,0.25);

    transform:scale(1.05);

}

.vote-btn.voted{

    background:rgba(239,68,68,0.75);

    border-color:rgba(239,68,68,0.5);

}

.vote-btn i{

    font-size:12px;

}

/* ==========================================================
   ABOUT
========================================================== */

.about-section{

    background:var(--light);

}

.about-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-image{

    overflow:hidden;

    border-radius:32px;

    box-shadow:var(--shadow-lg);

}

.about-image img{

    width:100%;

    transition:.6s ease;

}

.about-image:hover img{

    transform:scale(1.05);

}

.about-text span{

    display:inline-block;

    color:var(--red);

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:16px;

}

.about-text h2{

    margin-bottom:24px;

}

.about-text p{

    color:var(--gray);

    margin-bottom:22px;

}

.about-text .btn-main{

    margin-top:10px;

}

/* ==========================================================
   STATISTICS
========================================================== */

.stats-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

    margin-top:70px;

}

.stat-box{

    background:white;

    padding:35px;

    border-radius:22px;

    text-align:center;

    box-shadow:var(--shadow-sm);

}

.stat-box h3{

    color:var(--red);

    font-size:44px;

    margin-bottom:10px;

}

.stat-box p{

    margin:0;

    color:var(--gray);

}
/* ==========================================================
   NORWEGIAINFO STYLE.CSS v2.1
   ETAP 5
   ARTICLE SYSTEM
========================================================== */

/* ==========================================================
   ARTICLE HERO
========================================================== */

.article-hero{

    position:relative;

    min-height:65vh;

    display:flex;

    align-items:flex-end;

    overflow:hidden;

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

.article-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,32,91,.65),
        rgba(0,32,91,.50),
        rgba(0,0,0,.65)
    );

}

.article-hero .container{

    position:relative;

    z-index:2;

    padding-bottom:80px;

}

.article-breadcrumb{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-bottom:25px;

    color:rgba(255,255,255,.9);

    font-size:15px;

}

.article-breadcrumb a{

    color:white;

}

.article-title{

    max-width:900px;

}

.article-title h1{

    color:white;

    margin-bottom:24px;

}

.article-title p{

    color:rgba(255,255,255,.92);

    font-size:22px;

    max-width:760px;

}

/* ==========================================================
   ARTICLE CONTENT
========================================================== */

.article-content{

    background:white;

    padding:90px 0 110px;

}

.article-content .container{

    max-width:920px;

}

.article-content section{

    padding:0;

}

.article-content h2{

    margin-top:56px;

    margin-bottom:20px;

}

.article-content h3{

    margin-top:45px;

    margin-bottom:18px;

}

.article-content p{

    max-width:780px;

    line-height:1.95;

    margin-bottom:22px;

}

.article-content ul,
.article-content ol{

    margin:30px 0;

    padding-left:26px;

}

.article-content li{

    margin-bottom:14px;

    line-height:1.85;

}

.article-content strong{

    color:var(--dark);

}

/* ==========================================================
   ARTICLE IMAGE
========================================================== */

.article-image{

    margin:55px 0;

    border-radius:28px;

    overflow:hidden;

    box-shadow:var(--shadow-lg);

}

.article-image img{

    width:100%;

}

/* ==========================================================
   TABLE OF CONTENTS
========================================================== */

.article-toc{

    background:#f8fafc;

    border:1px solid var(--border);

    border-left:6px solid var(--red);

    padding:34px;

    border-radius:22px;

    margin:55px 0;

}

.article-toc h3{

    margin:0 0 18px;

}

.article-toc ol{

    margin:0;

}

.article-toc li{

    margin-bottom:12px;

}

.article-toc a{

    color:var(--blue);

    font-weight:600;

}

.article-toc a:hover{

    color:var(--red);

}

/* ==========================================================
   ARTICLE TABLE
========================================================== */

.article-table{

    width:100%;

    margin:50px 0;

    overflow:hidden;

    border-radius:20px;

    box-shadow:var(--shadow-sm);

}

.article-table thead{

    background:var(--blue);

    color:white;

}

.article-table th{

    padding:18px;

    text-align:left;

}

.article-table td{

    padding:18px;

    border-bottom:1px solid var(--border);

}

.article-table tbody tr:nth-child(even){

    background:#f8fafc;

}

.article-table tbody tr:hover{

    background:#eef4ff;

}
/* ==========================================================
   NORWEGIAINFO STYLE.CSS v2.1
   ETAP 6
   INFO BOXES • FAQ • CONTACT • FOOTER
========================================================== */

/* ==========================================================
   INFO BOXES
========================================================== */

.info-box,
.warning-box,
.success-box{

    margin:50px 0;

    padding:34px;

    border-radius:24px;

    box-shadow:var(--shadow-sm);

}

.info-box{

    background:#eef5ff;

    border-left:6px solid var(--info);

}

.warning-box{

    background:#fff7ed;

    border-left:6px solid var(--warning);

}

.success-box{

    background:#f0fdf4;

    border-left:6px solid var(--success);

}

.info-box h4,
.warning-box h4,
.success-box h4{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:15px;

}

.info-box i{

    color:var(--info);

}

.warning-box i{

    color:var(--warning);

}

.success-box i{

    color:var(--success);

}

/* ==========================================================
   CHECKLIST
========================================================== */

.checklist{

    margin:50px 0;

    padding:35px;

    background:#f8fafc;

    border:1px solid var(--border);

    border-radius:24px;

}

.checklist h4{

    margin-bottom:22px;

}

.checklist ul{

    list-style:none;

    padding:0;

    margin:0;

}

.checklist li{

    display:flex;

    align-items:flex-start;

    gap:14px;

    margin-bottom:16px;

}

.checklist li i{

    color:var(--success);

    margin-top:4px;

}

/* ==========================================================
   FAQ
========================================================== */

.faq-card{

    background:white;

    border:1px solid var(--border);

    border-radius:22px;

    padding:28px;

    margin-bottom:22px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.faq-card:hover{

    box-shadow:var(--shadow);

}

.faq-card h3{

    margin:0 0 14px;

    font-size:22px;

}

.faq-card p{

    margin:0;

}

/* ==========================================================
   CONTACT
========================================================== */

.contact-section{

    background:var(--light);

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

}

.contact-card{

    display:flex;

    align-items:flex-start;

    gap:18px;

    margin-bottom:24px;

    padding:26px;

    background:white;

    border-radius:22px;

    box-shadow:var(--shadow-sm);

}

.contact-card i{

    width:56px;

    height:56px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(186,12,47,.10);

    color:var(--red);

    font-size:22px;

}

.contact-form{

    background:white;

    padding:40px;

    border-radius:26px;

    box-shadow:var(--shadow);

}

.contact-form input,
.contact-form textarea{

    width:100%;

    margin-bottom:18px;

    padding:16px 18px;

    border:1px solid var(--border);

    border-radius:14px;

}

.contact-form textarea{

    min-height:180px;

    resize:vertical;

}

.contact-form input:focus,
.contact-form textarea:focus{

    outline:none;

    border-color:var(--red);

}

/* ==========================================================
   FOOTER
========================================================== */

.footer{

    background:#08111f;

    color:white;

    padding:90px 0 35px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

}

.footer h3,
.footer h4{

    color:white;

    margin-bottom:20px;

}

.footer p{

    color:#cbd5e1;

}

.footer ul{

    list-style:none;

    padding:0;

}

.footer li{

    margin-bottom:12px;

}

.footer a{

    color:#d1d5db;

}

.footer a:hover{

    color:white;

}

.social-icons{

    display:flex;

    gap:15px;

    margin-top:22px;

}

.social-icons a{

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

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

    transition:var(--transition);

}

.social-icons a:hover{

    background:var(--red);

    transform:translateY(-4px);

}

.footer-bottom{

    margin-top:60px;

    padding-top:30px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.10);

    color:#94a3b8;

}
/* ==========================================================
   NORWEGIAINFO STYLE.CSS v2.1
   ETAP 7
   RESPONSIVE • ANIMATIONS • UTILITIES
========================================================== */

/* ==========================================================
   ANIMATIONS
========================================================== */

@keyframes fadeUp{

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

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

}

@keyframes fadeLeft{

    from{
        opacity:0;
        transform:translateX(-40px);
    }

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

}

@keyframes fadeRight{

    from{
        opacity:0;
        transform:translateX(40px);
    }

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

}

.fade-up{
    animation:fadeUp .7s ease both;
}

.fade-left{
    animation:fadeLeft .7s ease both;
}

.fade-right{
    animation:fadeRight .7s ease both;
}

/* ==========================================================
   TABLET
========================================================== */

@media(max-width:1200px){

    .grid-4{

        grid-template-columns:repeat(2,1fr);

    }

    .about-wrapper,
    .contact-grid{

        grid-template-columns:1fr;

    }

    .footer-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:992px){

    section{

        padding:90px 0;

    }

    .navbar-wrapper{

        min-height:80px;

    }

    .home-content h1{

        font-size:58px;

    }

    .section-title h2{

        font-size:40px;

    }

    .travel-grid,
    .news-grid,
    .guides-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:767px){

    .navbar-menu{

        flex-wrap:wrap;

        justify-content:center;

        gap:18px;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .btn-main,
    .btn-outline,
    .btn-light{

        width:100%;

    }

    .grid-2,
    .grid-3,
    .grid-4,

    .news-grid,

    .travel-grid,

    .gallery-grid,

    .guides-grid,

    .stats-grid{

        grid-template-columns:1fr;

    }

    .article-table{

        display:block;

        overflow-x:auto;

        white-space:nowrap;

    }

    .footer-grid{

        grid-template-columns:1fr;

    }

}

/* ==========================================================
   SMALL MOBILE
========================================================== */

@media(max-width:576px){

    .container{

        width:94%;

    }

    .logo{

        font-size:28px;

    }

    .home-content h1{

        font-size:42px;

    }

    .lead{

        font-size:18px;

    }

    .section-title h2{

        font-size:32px;

    }

    .article-title h1{

        font-size:38px;

    }

    .article-content h2{

        font-size:30px;

    }

    .article-content h3{

        font-size:24px;

    }

    .article-toc,
    .info-box,
    .warning-box,
    .success-box,
    .checklist,
    .faq-card{

        padding:24px;

    }

    .contact-form{

        padding:28px;

    }

}

/* ==========================================================
   PRINT
========================================================== */

@media print{

    .topbar,
    .home-navbar,
    .page-navbar,
    .footer,
    .hero-buttons,
    .social-icons{

        display:none!important;

    }

    body{

        background:white;

        color:black;

    }

    section{

        padding:20px 0;

    }

    .article-content{

        padding:0;

    }

    .article-image{

        box-shadow:none;

    }

}

/* ==========================================================
   UTILITIES
========================================================== */

.mt-0{margin-top:0!important;}
.mt-1{margin-top:20px!important;}
.mt-2{margin-top:40px!important;}
.mt-3{margin-top:60px!important;}
.mt-4{margin-top:80px!important;}

.mb-0{margin-bottom:0!important;}
.mb-1{margin-bottom:20px!important;}
.mb-2{margin-bottom:40px!important;}
.mb-3{margin-bottom:60px!important;}
.mb-4{margin-bottom:80px!important;}

.text-center{text-align:center!important;}
.text-left{text-align:left!important;}
.text-right{text-align:right!important;}

.bg-white{background:white!important;}
.bg-light{background:var(--light)!important;}

.rounded{
    border-radius:var(--radius)!important;
}

.shadow{
    box-shadow:var(--shadow)!important;
}

.shadow-lg{
    box-shadow:var(--shadow-lg)!important;
}

.w-100{
    width:100%!important;
}

.d-none{
    display:none!important;
}

/* ==========================================================
   HAMBURGER MENU
========================================================== */

.hamburger{
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:5px;
    width:36px;
    height:36px;
    padding:4px;
    cursor:pointer;
    background:none;
    border:none;
    z-index:1100;
}

.hamburger span{
    display:block;
    width:100%;
    height:2px;
    background:#fff;
    border-radius:2px;
    transition:transform .3s ease, opacity .3s ease;
}

.hamburger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity:0; }
.hamburger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

@media(max-width:992px){

    .hw-divider{ display:none; }

    .hw-forecast{ display:none; }

    .hero-widgets{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }

    .hw-weather{ flex-direction:column; align-items:flex-start; gap:10px; }

    .hw-currency{ gap:8px; }

    .hw-rate{ min-width:70px; padding:6px 10px; }

    .hamburger{ display:flex; }

    .main-nav{
        display:none;
        position:absolute;
        top:100%;
        left:0;
        right:0;
        background:#00205B;
        padding:20px 24px;
        box-shadow:0 8px 24px rgba(0,0,0,.2);
        z-index:1000;
    }

    .main-nav.open{ display:block; }

    .main-nav .navbar-menu{
        flex-direction:column;
        gap:0;
        align-items:flex-start;
    }

    .main-nav .navbar-menu li a{
        display:block;
        padding:12px 0;
        border-bottom:1px solid rgba(255,255,255,.1);
        font-size:1rem;
    }

    .page-navbar,
    .home-navbar{
        position:relative;
    }

    .navbar-wrapper{
        flex-direction:row!important;
        justify-content:space-between!important;
        align-items:center!important;
        padding:0!important;
    }

    .navbar-widgets{
        display:none!important;
    }

    .topbar{
        display:block!important;
        position:relative;
        z-index:10;
    }

    .topbar .container{
        display:flex;
        align-items:center;
        gap:10px;
        padding:8px 16px;
        flex-wrap:wrap;
    }

    .topbar-content{
        display:flex;
        gap:10px;
        flex-wrap:wrap;
        align-items:center;
        flex:1;
    }

    .topbar .weather-box,
    .topbar .currency-box{
        background:#f4f6f9;
        border:1px solid #e5e7eb;
        border-radius:10px;
        padding:7px 12px;
        gap:8px;
        backdrop-filter:none;
    }

    .topbar .weather-box i,
    .topbar .currency-box i{
        color:var(--red);
    }

    .topbar .widget-label{
        color:#6b7280;
        font-size:10px;
    }

    .topbar .widget-value{
        color:#1f2937;
        font-size:13px;
        font-weight:600;
    }

    .topbar .topbar-social{
        font-size:20px;
        color:#1f2937;
        flex-shrink:0;
    }

}

@media(max-width:767px){

    /* Galeria na stronie głównej — max 2 zdjęcia na telefonie */
    .gallery-section .gallery-item:nth-child(n+3){
        display:none;
    }

}

@media(min-width:768px) and (max-width:992px){

    /* Galeria na stronie głównej — max 4 zdjęcia na tablecie */
    .gallery-section .gallery-item:nth-child(n+5){
        display:none;
    }

}