@charset "utf-8";

/* ================================================================
   BEST COOKS — Dark coffee-themed landing
   Palette:  bg #14100d / panel #1c1510 / accent #c97d3c
================================================================ */

:root {
	--bg:        #14100d;
	--bg-soft:   #1c1510;
	--bg-card:   #1f1711;
	--accent:    #c97d3c;
	--accent-2:  #e89a55;
	--accent-dk: #8a4e22;
	--text:      #e8dccb;
	--text-dim:  #9a8a78;
	--line:      rgba(201, 125, 60, 0.35);
	--serif:     'Playfair Display', 'Georgia', serif;
	--display:   'Cinzel', 'Playfair Display', serif;
	--script:    'Great Vibes', 'Brush Script MT', cursive;
	--sans:      'Poppins', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
	margin: 0;
	padding: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--sans);
	font-size: 15px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

/* ================================================================
   NAVBAR  — curved orange badge on the left + right-aligned links
================================================================ */
.navbar {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 60px 0 0;
	background: linear-gradient(180deg, #110d0a 0%, #14100d 100%);
	height: 92px;
	border-bottom: 1px solid rgba(201, 125, 60, 0.15);
	z-index: 5;
}

.logo-wrap {
	position: relative;
	width: 360px;
	height: 92px;
	flex-shrink: 0;
}

.logo-shape {
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 120px;
	background: linear-gradient(135deg, #d78744 0%, #b86a2e 55%, #8a4e22 100%);
	border-bottom-right-radius: 60% 80%;
	box-shadow: 0 8px 22px rgba(0,0,0,0.45), inset 0 -2px 6px rgba(0,0,0,0.25);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 10px 40px 30px;
	text-align: center;
	overflow: hidden;
}

.logo-shape::before {
	content: "";
	position: absolute;
	inset: 6px 6px 18px 6px;
	border: 1px solid rgba(255, 225, 190, 0.35);
	border-bottom-right-radius: 60% 80%;
	pointer-events: none;
}

.logo-top {
	font-family: var(--script);
	font-size: 20px;
	color: #fff3e2;
	line-height: 1;
	margin-bottom: 2px;
}
.logo-main {
	font-family: var(--display);
	font-weight: 700;
	letter-spacing: 4px;
	color: #fff6e8;
	font-size: 22px;
	text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}
.logo-sub {
	font-family: var(--serif);
	font-style: italic;
	font-size: 11px;
	color: #ffe4c6;
	letter-spacing: 3px;
	margin-top: 2px;
}

.nav-links {
	display: flex;
	gap: 38px;
}
.nav-links a {
	font-family: var(--sans);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 2.5px;
	color: var(--text);
	padding: 8px 4px;
	border-bottom: 2px solid transparent;
	transition: color .25s, border-color .25s;
}
.nav-links a:hover {
	color: var(--accent-2);
	border-bottom-color: var(--accent);
}

/* ================================================================
   HERO
================================================================ */
.hero {
	position: relative;
	min-height: 820px;
	overflow: hidden;
	background:
		radial-gradient(ellipse 60% 55% at 50% 45%, rgba(201,125,60,0.28) 0%, transparent 60%),
		radial-gradient(ellipse at 15% 85%, rgba(138, 78, 34, 0.45) 0%, transparent 55%),
		radial-gradient(ellipse at 85% 85%, rgba(138, 78, 34, 0.35) 0%, transparent 55%),
		linear-gradient(180deg, #0a0705 0%, #1a120d 50%, #0f0b08 100%);
}

.hero-bg {
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle at 20% 70%, rgba(90, 50, 20, 0.55) 0, transparent 28%),
		radial-gradient(circle at 80% 80%, rgba(90, 50, 20, 0.40) 0, transparent 28%),
		radial-gradient(circle at 50% 100%, rgba(60, 30, 10, 0.75) 0, transparent 45%);
	opacity: 1;
	pointer-events: none;
}

.hero-content {
	position: relative;
	max-width: 1080px;
	margin: 0 auto;
	padding: 50px 40px 90px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	z-index: 2;
}

.hero-cup {
	width: 620px;
	max-width: 95%;
	/* Radial mask: isolate cup and fade the rest into the dark background */
	-webkit-mask-image: radial-gradient(ellipse 38% 52% at 55% 48%,
		#000 42%,
		rgba(0,0,0,0.75) 58%,
		rgba(0,0,0,0.30) 75%,
		transparent 90%);
	        mask-image: radial-gradient(ellipse 38% 52% at 55% 48%,
		#000 42%,
		rgba(0,0,0,0.75) 58%,
		rgba(0,0,0,0.30) 75%,
		transparent 90%);
	filter:
		drop-shadow(0 40px 50px rgba(0,0,0,.8))
		drop-shadow(0 0 80px rgba(201,125,60,.45))
		contrast(1.1)
		saturate(1.15)
		brightness(1.05);
	margin-bottom: 30px;
	animation: float 5s ease-in-out infinite;
	position: relative;
	z-index: 2;
}
@keyframes float {
	0%,100% { transform: translateY(0); }
	50%     { transform: translateY(-10px); }
}

/* ---- Steam rising from the cup ---- */
.steam {
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 180px;
	pointer-events: none;
	z-index: 3;
}
.steam span {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 16px;
	height: 16px;
	background: radial-gradient(circle, rgba(255,220,180,0.55), rgba(255,220,180,0) 70%);
	border-radius: 50%;
	filter: blur(4px);
	opacity: 0;
	animation: rise 4s ease-in infinite;
}
.steam span:nth-child(1) { left: 40%; animation-delay: 0s;   }
.steam span:nth-child(2) { left: 55%; animation-delay: 1s;   }
.steam span:nth-child(3) { left: 48%; animation-delay: 2s;   }
.steam span:nth-child(4) { left: 60%; animation-delay: 2.8s; }
@keyframes rise {
	0%   { transform: translateY(0)    scale(1);   opacity: 0; }
	20%  { opacity: .9; }
	100% { transform: translateY(-180px) scale(3);  opacity: 0; }
}

/* ---- Scattered coffee beans ---- */
.bean {
	position: absolute;
	width: 26px;
	height: 18px;
	background: radial-gradient(ellipse, #3a1f10 0%, #1a0d05 80%);
	border-radius: 50%;
	box-shadow:
		inset 0 0 4px rgba(0,0,0,.9),
		0 4px 8px rgba(0,0,0,.5);
	z-index: 1;
}
.bean::before {
	content: "";
	position: absolute;
	inset: 2px 45% 2px 45%;
	background: #0a0503;
	border-radius: 50%;
	box-shadow: 0 0 2px #0a0503;
}
.b1 { top: 55%; left:  8%; transform: rotate(-30deg); }
.b2 { top: 70%; left: 16%; transform: rotate( 20deg); width: 22px; height: 15px; }
.b3 { top: 78%; left: 26%; transform: rotate(-60deg); }
.b4 { top: 64%; left: 22%; transform: rotate( 10deg); width: 20px; height: 14px; }
.b5 { top: 72%; right: 10%; transform: rotate( 40deg); }
.b6 { top: 82%; right: 22%; transform: rotate(-20deg); width: 22px; height: 15px; }
.b7 { top: 58%; right: 18%; transform: rotate(-50deg); }
.b8 { top: 88%; left: 45%; transform: rotate( 25deg); width: 20px; height: 14px; }

/* ---- Cinnamon sticks ---- */
.cinnamon {
	position: absolute;
	width: 140px;
	height: 18px;
	background:
		repeating-linear-gradient(90deg,
			#7a3d17 0 4px, #5e2d10 4px 8px, #8a481e 8px 12px),
		#6e3414;
	border-radius: 9px;
	box-shadow:
		inset 0 -4px 6px rgba(0,0,0,.55),
		inset 0 2px 4px rgba(255,180,120,.15),
		0 8px 16px rgba(0,0,0,.55);
	z-index: 1;
}
.c1 { bottom: 80px; right: 12%; transform: rotate(18deg); }
.c2 { bottom: 110px; right: 22%; transform: rotate(28deg); width: 120px; height: 16px; opacity: .85; }

/* ---- Vertical decorative flourishes (products section) ---- */
.side-flourish {
	position: absolute;
	top: 60px;
	width: 60px;
	height: 800px;
	opacity: .55;
	pointer-events: none;
}
.side-flourish.left  { left: 20px; }
.side-flourish.right { right: 20px; }

/* ---- Fancy header with flourishes ---- */
.fancy-header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 8px;
}
.fancy-header svg { width: 140px; height: 40px; }
.fancy-cup {
	color: var(--accent);
	font-size: 28px;
	line-height: 1;
	filter: drop-shadow(0 2px 6px rgba(201,125,60,.5));
}

.eyebrow-small {
	display: block;
	text-align: center;
	font-family: var(--script);
	font-size: 24px;
	color: var(--accent-2);
	margin-bottom: 2px;
}

/* ---- Large hero button variant ---- */
.btn-lg {
	margin-top: 24px;
	padding: 14px 34px;
	font-size: 12px;
	letter-spacing: 3px;
}

.hero-caption { max-width: 620px; }

.hero-eyebrow {
	font-family: var(--serif);
	font-style: italic;
	color: var(--accent-2);
	letter-spacing: 4px;
	font-size: 13px;
	text-transform: uppercase;
	display: block;
	margin-bottom: 14px;
}

.hero h1 {
	font-family: var(--display);
	font-weight: 700;
	font-size: 46px;
	line-height: 1.15;
	color: #fbe9d1;
	margin: 0 0 16px;
	letter-spacing: 2px;
	text-shadow: 0 2px 10px rgba(0,0,0,.6);
}

.hero p {
	color: var(--text-dim);
	font-size: 15px;
	letter-spacing: .5px;
	margin: 0;
}

/* ================================================================
   SECTIONS
================================================================ */
section {
	padding: 80px 40px;
	position: relative;
}

.section-title {
	font-family: var(--display);
	font-weight: 700;
	font-size: 40px;
	letter-spacing: 4px;
	color: var(--accent-2);
	text-align: center;
	margin: 10px 0 8px;
	text-transform: uppercase;
}

.section-sub {
	text-align: center;
	color: var(--text-dim);
	max-width: 620px;
	margin: 0 auto 50px;
	font-size: 14px;
	letter-spacing: .6px;
}

/* ---- Ornament separator ---- */
.ornament {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin: 0 auto 10px;
	max-width: 420px;
}
.ornament-line {
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
}
.ornament-icon,
.ornament-swirl {
	color: var(--accent);
	font-size: 22px;
	line-height: 1;
}
.ornament-bottom { margin-top: 50px; }

/* ================================================================
   PRODUCTS / CARD GRID
================================================================ */
.products {
	background:
		radial-gradient(ellipse at 50% 0%, rgba(201,125,60,0.08), transparent 55%),
		var(--bg-soft);
	overflow: hidden;
	padding-left: 100px;
	padding-right: 100px;
}

.card-grid {
	max-width: 1160px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}

.card {
	background: linear-gradient(180deg, #20170f 0%, #1a120c 100%);
	border: 1px solid rgba(201, 125, 60, 0.15);
	border-radius: 18px;
	padding: 24px 22px 28px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover {
	transform: translateY(-6px);
	box-shadow: 0 22px 40px rgba(0,0,0,.55), 0 0 0 1px var(--accent) inset;
	border-color: var(--accent);
}

.card-img {
	width: 100%;
	aspect-ratio: 3 / 4;
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 22px;
	background: #0e0906;
	box-shadow: 0 14px 30px rgba(0,0,0,.6);
	position: relative;
	border: 1px solid rgba(201,125,60,0.2);
}
.card-img::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.35) 100%);
	pointer-events: none;
}
.card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s ease;
}
.card:hover .card-img img { transform: scale(1.06); }

.card h3 {
	font-family: var(--serif);
	font-size: 19px;
	font-weight: 600;
	color: #f2dcc0;
	margin: 6px 0 10px;
	letter-spacing: .5px;
}
.card p {
	font-size: 13px;
	color: var(--text-dim);
	line-height: 1.65;
	margin: 0 0 22px;
	flex: 1;
}

/* ---- Button ---- */
.btn {
	display: inline-block;
	padding: 11px 26px;
	background: linear-gradient(180deg, var(--accent-2), var(--accent));
	color: #1a0f07;
	font-family: var(--sans);
	font-weight: 600;
	font-size: 11px;
	letter-spacing: 2.5px;
	border-radius: 4px;
	text-transform: uppercase;
	box-shadow: 0 6px 16px rgba(201, 125, 60, 0.35);
	transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn:hover {
	transform: translateY(-2px);
	filter: brightness(1.1);
	box-shadow: 0 10px 22px rgba(201, 125, 60, 0.55);
}

/* ================================================================
   ABOUT
================================================================ */
.about {
	background:
		radial-gradient(ellipse at 80% 50%, rgba(201,125,60,0.10), transparent 55%),
		var(--bg);
}

.about-inner {
	max-width: 1080px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.about-img img {
	border-radius: 14px;
	box-shadow: 0 24px 50px rgba(0,0,0,.6);
	border: 1px solid rgba(201,125,60,.25);
}

.about-text h2 {
	font-family: var(--display);
	font-size: 38px;
	letter-spacing: 4px;
	color: var(--accent-2);
	margin: 8px 0 18px;
	text-transform: uppercase;
}

.about-text p {
	color: var(--text-dim);
	font-size: 14px;
	margin: 0 0 14px;
}

.about-text .btn { margin-top: 10px; }

/* ================================================================
   CONTACT
================================================================ */
.contact {
	background: var(--bg-soft);
	padding-bottom: 100px;
}

.contact-grid {
	max-width: 1080px;
	margin: 20px auto 0;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
	text-align: center;
}

.contact-card {
	background: var(--bg-card);
	border: 1px solid rgba(201,125,60,.18);
	border-radius: 14px;
	padding: 34px 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.contact-card img {
	width: 110px;
	filter: drop-shadow(0 8px 16px rgba(0,0,0,.6));
}
.contact-card h4 {
	font-family: var(--serif);
	color: var(--accent-2);
	font-size: 18px;
	letter-spacing: 2px;
	margin: 0 0 14px;
	text-transform: uppercase;
}
.contact-card p {
	margin: 4px 0;
	color: var(--text-dim);
	font-size: 13px;
	line-height: 1.7;
}
.accent { color: var(--accent-2) !important; font-weight: 500; }

/* ================================================================
   FOOTER
================================================================ */
.footer {
	background: #0c0806;
	color: #6a5a48;
	text-align: center;
	padding: 22px 20px;
	font-size: 11px;
	letter-spacing: 1px;
	border-top: 1px solid rgba(201,125,60,.12);
}
.footer p { margin: 0; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 980px) {
	.navbar         { flex-direction: column; height: auto; padding: 0 0 20px; }
	.logo-wrap      { width: 100%; height: 110px; margin-bottom: 14px; }
	.logo-shape     { border-bottom-right-radius: 0; border-bottom-left-radius: 0; }
	.nav-links      { flex-wrap: wrap; justify-content: center; gap: 18px; padding: 0 20px; }
	.card-grid      { grid-template-columns: repeat(2, 1fr); }
	.about-inner    { grid-template-columns: 1fr; gap: 30px; }
	.contact-grid   { grid-template-columns: 1fr; }
	.hero h1        { font-size: 34px; }
	.section-title  { font-size: 30px; }
}
@media (max-width: 560px) {
	.card-grid      { grid-template-columns: 1fr; }
	section         { padding: 60px 20px; }
	.hero-content   { padding: 30px 20px 60px; }
}
