/* ===================== IMPORTS ===================== */
@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* ===================== GLOBAL STYLES ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "PT Sans", sans-serif;
    background: #000;
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
}

/* ===================== HEADER STYLES ===================== */
.header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
   background: #000;
    padding: 15px 60px;
    /* border-bottom: 1px solid rgba(212, 175, 55, 0.2); */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
	position: relative;
}

/* Logo */
.logo {
    display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 175px;
    width: auto;
}

/* Main Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 60px;
}

.main-nav.right{
	justify-content: right;
}

.main-nav.left{
	justify-content: left;
}



.nav-menu {
   list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
  justify-content: center;
  align-items: center;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #d4af37;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
  gap: 15px;
    flex-shrink: 0;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.8px;
    transition: color 0.3s ease;
    text-transform: uppercase;
	  font-family: "Playfair Display", serif;
}

.lang.active {
    color: #d4af37;
}

.lang-divider {
    color: #666;
    font-size: 12px;
}

.header-icons {
  display: flex;
  gap: 10px;
}

.icon-link {
    color: #d4af37;
  text-decoration: none;
  font-size: 23px;
  transition: color 0.3s ease;
  cursor: pointer;
}

/* Hamburger Menu */
.cs-mb-hamburger {
    display: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}

.cs-mb-hamburger img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Mobile Menu */
.mb-ls-vw {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    padding: 30px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 999;
    max-height: 500px;
    overflow-y: auto;
}

.mb-ls-vw.active {
    display: block;
}

.mb-ls-vw ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mb-ls-vw ul li {
    text-align: center;
}

.mb-ls-vw ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.mb-ls-vw ul li a:hover {
    color: #d4af37;
}


.icon-link:hover {
    color: #e5c158;
}

.sign-in {
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.sign-in:hover {
    color: #d4af37;
}

/* ===================== HERO SECTION ===================== */
.hero-section {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
   /* max-width: 900px;*/
   padding: 30px 40px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Lifestyle Button */
.lifestyle-btn {
  background: #d4af37;
  color: #000;
  border: none;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  font-family: "PT Sans", serif;
  border-radius: 30px;
  font-weight: normal;
}

.lifestyle-btn:hover {
    background: #e5c158;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Hero Title */
.hero-title {
    font-family: "Playfair Display", serif;
    font-size: 50px;
    font-weight: 700;
    color: #eeab29;
    line-height: 1.2;
    margin: 0px 0;
    letter-spacing: 2px;
}

/* Hero Description */
.hero-description {
    margin-top: 40px;
}

.hero-description p {
   color: #7a7978;
  font-size: 16px;
    line-height: 1.8;
    margin: 20px 0;
    text-align: center;
    font-weight: 300;
}

/* ===================== SECTION STYLES ===================== */
.about-section,
.cigar-man-section,
.accessories-section,
.news-section {
    padding: 100px 60px 0px 60px;
    min-height: 100vh;
    background: #000;
}

/* ===================== FOOTER ===================== */
.footer {
    background: #111;
    padding: 60px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 100px;
}

footer p {
    color: #999;
    font-size: 14px;
}

/* ===================== UTILITIES ===================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-section{
	display: flex;
  justify-content: center;
}

.header-right {
   
  position: absolute;
  top: 0;
  right: 0;
}

.cs-mb-hamburger img {
  width: 15px;
  height: auto;
}

.cs-mb-hamburger{
	display: none;
	padding: 5px 10px;
	border: 1px solid rgba(255,255,255,0.2);
}
.mb-ls-vw{
	position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  background: #000;
  min-width: 100%;
  top: 80px;
  display: none;
}

.mb-ls-vw ul{
 margin: 0;
  padding: 0;
  list-style: none;
  color: #fff;
  display: flex;
  flex-direction: column;  
}

.mb-ls-vw ul li{	
 padding: 5px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-width: 0px 1px 1px 1px;
}

.mb-ls-vw ul li a{	
	color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: none;
}