/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
	overflow-x: hidden;
}

/* Header Styles */
.header-section {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    padding: 2rem 0;
    border-bottom: 1px solid #eee;
}
.main-nav .navbar-nav .nav-link {
  padding: 9px 18px;
}

.brand-text {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: #8B4513;
    text-decoration: none;
}

.navbar-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo {
    height: 62px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
}

.navbar-icons {
    display: flex;
    gap: 1.5rem;
}

.navbar-icons i {
    font-size: 1.1rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.navbar-icons i:hover {
    color: #8B4513;
}

.main-nav {
    background: #f8f9fa;
    padding: 0.5rem 0;
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 3rem;
}

.nav-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #8B4513;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-content {
    position: relative;
    height: 100%;
}

.main-nav {
  background: #ffffffab;
  padding: 0.5rem 0;
  position: absolute;
  top: 0;
  z-index: 2;
  width: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 15%;
    left: 5%;
    z-index: 2;
    color: white;
}

.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: white;
    color: #333;
}

/* Story Section */
.story-section {
    background: #f8f9fa;
}

.story-images img {
    max-width: 100%;
    object-fit: cover;
}

.story-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #333;
}

.story-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Categories Section */
.categories-section {
    background: white;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #333;
    letter-spacing: 1px;
}

.category-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-item img {
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.category-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    letter-spacing: 0.5px;
}

/* Full Width Images */
.full-width-images img {
    height: 630px;
    object-fit: cover;
}

/* Signature Picks */
.signature-picks {
    background: #f8f9fa;
}

.signature-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.signature-item:hover {
    transform: translateY(-5px);
}

.signature-item img {
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.signature-title {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    letter-spacing: 0.5px;
}

/* Testimonial Section */
.testimonial-section {
    background: white;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-style: italic;
}

.testimonial-author {
    color: #333;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #666;
}

/* Footer */
.footer-section {
  background: #ebebeb;
  color: #333;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
	font-family: 'Playfair Display', serif;
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
	font-family: 'Playfair Display', serif;
}

.footer-links a:hover {
    color: #8B4513;
}

.newsletter-form input {
    background: #444;
    border: 1px solid #555;
    color: white;
    padding: 10px;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    background: #8B4513;
    border: none;
    padding: 10px 20px;
    width: 100%;
}
.story-images img{
  transition: transform 0.3s ease;
}

.story-images img:hover {
  transform: translateY(-5px);
}

.navlink ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  column-gap: 11px;
  justify-content: center;
  align-content: center;
  row-gap: 11px;
  padding: 0;
}
.navlink ul li {
  border-right: 1px solid #777;
  padding-right: 9px;
  color: #333;

}
.navlink ul li a {
  color: #777;
  font-size: 14px;
  
}	

.navlink {
  border-top: 1px solid #777;
  padding-top: 30px;
}

.navlogo{display:none}

.socialfooter{display: flex;
  column-gap: 10px;
  text-decoration: none;
  list-style: none;
  padding: 0;}
/* Responsive Design */

@media (max-width: 1200px) {
	.hero-section{
		height:auto;
		overflow:visible;
	}
}

@media (max-width: 991px) {
	.main-nav{position:relative}
	.navlogo{display:block}
	.header-section .navbar-brand, .navbar-center{display:none;}
	.header-section .container{justify-content:center;}
	.header-section  .navbar{padding: 1rem 0;}
	.navbar-collapse {
  position: absolute;
  top: 80px;
  background: #fff;
  width: 100%;
  left: 0px;
  padding: 15px 9px;
}
.navbar-nav .dropdown-menu .dropdown-item{
	color: rgb(89, 89, 89);
	font-size:14px;
}
.navbar-nav .dropdown-menu {
  position: static;
  margin-left: 39px;
  border: none;
  padding: 0px;
}
.main-nav .navbar-nav .nav-link {
  padding: 9px 18px;
  color: rgb(89, 89, 89);
}
.main-nav{
	background: #fffffff0;
}
}

@media (max-width: 768px) {
	
    .navbar-center {
        position: static;
        transform: none;
        margin: 1rem 0;
    }
    
    .navbar-icons {
        justify-content: center;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-text {
        left: 2%;
        right: 2%;
    }
    
    .story-images img {
        height: 150px;
    }
        .category-item img{height:200px}

    .full-width-images img {
        height: auto;
    }
	.story-images img{height:auto;}
}



@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .story-title {
        font-size: 2rem;
    }
	.footer-title{font-size:1rem;}
}
