/*Ebbe Styles*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

/* Variables */
:root {
    --bg: #f5f2ed;
    --bg-light: #faf5f0;
	--accent: #FF7400;
	--accent-light: #ffbb82;
	--text: #59524d;
	--text-light: #a8a29c;
	--border: rgba(0,0,0,0.1);
	
	background-color: var(--bg);
	color: var(--text);
	font-family: 'Poppins', sans-serif;
}

body { 
    margin: 0;
    padding: 0; 
    overflow-x: hidden; 
}

/* Classes */
.page-heading {
    font-weight: 200;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    text-align: center;
}

.list-element {
    font-size: 18px;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.anim.hidden {
    opacity: 0;
    transform: translateX(0);
}

.anim.hidden.slide-left  { transform: translateX(-80px); }
.anim.hidden.slide-right { transform: translateX(80px); }
.anim.hidden.slide-up    { transform: translateY(40px); }
.anim.hidden.slide-down  { transform: translateY(-40px); }

.anim {
    transition: opacity .5s ease, transform .5s ease;
    margin: 0 !important;
    padding: 0 !important;
}

.anim.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ─── Navigation ──────────────────────────────────────────── */
.site-nav {
    width: 100%;
    background: #fff;
    border-bottom: 0.5px solid #e0e0e0;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 100;
}

.nav-inner {
    width: 100%;
    height: 125px;
    padding: 0 2rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo */
.nav-logo img {
    height: 75px;
    width: auto;
    display: block;
}

/* Desktop links — centred absolutely */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    color: #111;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding-bottom: 3px;
    border-bottom: 1.5px solid transparent;
    transition: border-color .2s, color .2s;
}
.nav-link:hover,
.nav-link.active {
    border-bottom-color: var(--accent);
    color: var(--accent);
}

/* Hamburger — hidden on desktop */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 7px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hb-bar {
    display: block;
    width: 32px;
    height: 2px;
    background: #111;
    transition: transform .25s ease, opacity .25s ease;
}

/* Animated X when open */
.hamburger.open .hb-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open .hb-bar:nth-child(2) { opacity: 0; }
.hamburger.open .hb-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile dropdown — hidden by default */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 0.5px solid #e0e0e0;
    padding: 1rem 2rem 1.5rem;
}
.mobile-menu.open {
    display: flex;
}

.mob-link {
    text-decoration: none;
    font-size: 18px;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: .75rem 0 .75rem .75rem;
    border-bottom: 0.5px solid #f0f0f0;
    border-left: 2px solid transparent;
    transition: border-color .2s, color .2s;
}
.mob-link:hover,
.mob-link.active {
    border-left-color: var(--accent);
    color: var(--accent);
}

/* ─── Mobile breakpoint ────────────────────────────────────── */
@media (orientation: portrait) {
    .nav-links  { display: none; }
    .hamburger  { display: flex; }
}

/* ─── Global Style ────────────────────────────────────── */
/* Orientations */
.centerself { justify-content: center; }

/* Objects */
.price { font-weight:500; color: var(--accent); }

.section-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--light-text);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.notice { font-size: 11px; letter-spacing: 0.18em; color: var(--light-text); }
 
.main-btn {
    width: 220px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: var(--accent);
    color: white;
    text-decoration: none;

    font-size: 24px;
    font-family: 'Poppins', sans-serif;

    border-radius: 35px;

    transition: transform 0.2s ease;
}

.main-btn:hover {
    transform: scale(1.1);
}

.btn {
    background: var(--accent); 
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px; 
    font-weight: 500;
    padding: 10px 22px; 
    border-radius: 8px;
    letter-spacing: 0.05em; margin-top: 1.25rem;
    transition: opacity .2s;
    align-self: center;
    text-decoration: none;
}

.btn:hover { opacity: .85; }

.divider { border: none; border-top: 0.5px solid var(--border); margin: 0 0 2.5rem; }

/* Layouts */
.category {
    background: var(--bg-light);
    border: 0.5px solid var(--border);
    border-radius: 14px;
    margin: 0 1.5rem;
}

.card {
    border: 0.5px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow .2s, border-color .2s;
    display: flex;
    flex-direction: column;
}

.comparison-dual {
    
}

.info-row { 
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-size 0.2s ease;
    
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-row:hover { background-size: 110%; }

.card:hover { box-shadow: 0 3px 16px rgba(255,116,0,0.1); border-color: var(--accent-light); }

/* IMG fit */
.img-cover {
    object-fit: cover;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
}

.card-img-fit-width { object-fit: cover; width: 100%; height: auto; aspect-ratio: 1; }
