@import url(https://db.onlinewebfonts.com/c/83e4a6b639612cd501853be5a7cf97ab?family=Trend+Sans+One+Regular);


/* Base Variables */
:root {
    --bg-dark: #252b51;
    --bg-darker: #252b51;
    --light: #f2f2f2;
    --lighter: #f1f1f1;
    --bg-card: #e1e1e1;
    --accent-gold: #252b51;
    --accent-hover: #252b51;
    --text-main: #252b51;
    --text-muted: #252b51;
    --border-color: #252b51;
    
    --font-heading: "Trend Sans One Regular";
    --font-body: 'Outfit', sans-serif;
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 6rem 0;
    scroll-margin-top: 100px;
}

.mt-2 { margin-top: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.small-text { font-size: 0.85rem; color: var(--text-muted); }

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: transparent;
    
}

nav.scrolled {
    background: rgba(37, 43, 81, .95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--light);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    color: var(--light);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--light);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--lighter);
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(37, 43, 81, 0.98);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    z-index: 1002;
    border-radius: 8px;
    overflow: hidden;
    top: 100%;
    left: 0;
    margin-top: 0;
}

.dropdown-content a {
    color: var(--light);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 1rem;
}

.dropdown-content a::after {
    display: none;
}

.dropdown-content a:hover {
    background-color: var(--bg-card);
    color: var(--text-main);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Mobile Actions */
.mobile-actions {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--light);
    transition: var(--transition);
    border-radius: 3px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('assets/images/pizza_hero.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(10,10,10,1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1rem;
}

.hero-logo {
    max-width: 300px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(230, 161, 65, 0.4));
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
    color: var(--light);
}

.subtitle {
    font-size: 1.2rem;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--light);
    color: var(--bg-darker);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(230, 161, 65, 0.3);
}

.cta-button:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(230, 161, 65, 0.4);
    color: var(--light);
}

/* Info Section */
.info-section {
    background-color: var(--bg-darker);
    border-bottom: 1px solid var(--border-color);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.info-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.info-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.highlight-link {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1.2rem;
}

.highlight-link:hover {
    text-decoration: underline;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--border-color);
}

.hours-list li:last-child {
    border-bottom: none;
}

.closed {
    color: #e74c3c;
    font-weight: 600;
}

.delivery-rates {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    background: rgba(255,255,255,0.05);
    padding: 0.5rem;
    border-radius: 0.5rem;
}

/* Menu Section */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    color: var(--accent-gold);
}

.divider {
    height: 3px;
    width: 60px;
    background: var(--accent-gold);
    margin: 1rem auto;
    border-radius: 3px;
}

.category-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.price-guide {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    color: var(--accent-gold);
    font-weight: 500;
}

.price-guide span {
    background: rgba(230, 161, 65, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 0.3rem;
    border: 1px solid rgba(230, 161, 65, 0.2);
}

.category-note {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
}

.menu-header {
	margin-bottom: 4rem;
}
.menu-category {
    margin-bottom: 5rem;
    scroll-margin-top: 100px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 0.8rem;
    border: 1px solid transparent;
    transition: var(--transition);
}

.menu-item:hover {
    border-color: var(--accent-gold);
    background: #efefef;
}

.menu-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.menu-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.item-price {
    display: block;
    margin-top: 0.8rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.dessert-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}
.dessert-list li span {
    color: var(--accent-gold);
    font-weight: 600;
}

.category-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* Deals Section */
.deals-section {
    background-color: var(--light);
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.deal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.deal-card:hover {
    transform: translateY(-10px);
}

.featured-deal {
    border-color: var(--accent-gold);
    box-shadow: 0 0 30px rgba(230, 161, 65, 0.15);
    transform: scale(1.05);
}

.featured-deal:hover {
    transform: scale(1.05) translateY(-10px);
}

.deal-price {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 1rem;
}

.deal-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.deal-card p {
    color: var(--text-muted);
}

/* Footer */
footer {
    background: var(--bg-dark);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--light);
}

.footer-logo {
    font-size: 3rem;
    color: var(--light);
    margin-bottom: 1rem;
}

.social-link {
    display: inline-block;
    margin: 1.5rem 0;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--light);
    border-radius: 50px;
}

.social-link:hover {
    border-color: var(--bg-dark);
    color: var(--text-main);
    background: var(--light);
}

.copyright {
    color: var(--lighter);
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .info-grid {
	   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .category-split {
	   grid-template-columns: 1fr;
	   gap: 2rem;
    }
    
    .deals-grid {
	   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .featured-deal {
	   transform: none;
    }
    
    .featured-deal:hover {
	   transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .mobile-actions {
	  display: flex;
    }
    
    .hamburger {
	   display: flex;
    }

    .nav-links {
	   position: fixed;
	   top: 0;
	   right: -100%;
	   width: 100%;
	   height: 100vh;
	   background: var(--bg-darker);
	   flex-direction: column;
	   justify-content: center;
	   align-items: center;
	   transition: 0.5s ease;
    }

    .nav-links.active {
	   right: 0;
    }

    .nav-links li {
	   margin: 0rem 0;
    }

    .nav-links a {
	   font-size: 2rem;
    }
    
    .dropdown-content {
	   position: static;
	   display: none;
	   background-color: transparent;
	   box-shadow: none;
	   margin-top: 0;
	   overflow-y: auto;
    }
    
    .dropdown:hover .dropdown-content {
	   display: block;
    }
    
    .dropdown-content a {
	   font-size: 1.2rem;
	   padding: 8px 16px;
    }

    .hamburger.active span:nth-child(1) {
	   transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
	   opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
	   transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero h1 {
	   font-size: 2.8rem;
    }
    
    .hero-logo {
	   max-width: 220px;
    }

    .section {
	   padding: 4rem 0;
    }

    .price-guide {
	   flex-direction: column;
	   gap: 0.5rem;
    }
    
    .price-guide span {
	   display: inline-block;
    }
    .category-title {
	    font-size: 1.8rem;
    }
}
