/* ========================================
   AROMALIFE CATERING - CUSTOM STYLES
   Premium Gold & Black Theme
   No Border Radius (Sharp Corners)
   ======================================== */

/* ========== ROOT VARIABLES ========== */
:root {
    --gold-primary: #C9A875;
    --gold-light: #D4B786;
    --gold-dark: #B8976A;
    --black-primary: #0f0f0f;
    --black-secondary: #1a1a1a;
    --black-tertiary: #252525;
    --white: #ffffff;
    --cream: #f5f5f0;
    --gray-light: #cccccc;
    --gray-dark: #666666;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--white);
    background-color: var(--black-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    background-color: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    padding: 20px 0;
    transition: var(--transition);
    overflow: visible;
    isolation: isolate;
}

.navbar.scrolled {
    background-color: rgba(15, 15, 15, 1);
    box-shadow: 0 4px 20px rgba(201, 168, 117, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 60px;
    width: auto;
    max-width: 150px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 50px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold-primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ========== HAMBURGER MENU ========== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 24px;
    justify-content: space-between;
    flex-shrink: 0;
    margin-left: 15px;
    position: relative;
    z-index: 10002;
}

.hamburger .line {
    width: 100%;
    height: 3px;
    background-color: var(--gold-primary);
    transition: var(--transition);
}

@media (max-width: 576px) {
    .hamburger {
        width: 26px;
        height: 20px;
    }
    
    .hamburger .line {
        height: 2px;
    }
}

@media (max-width: 968px) {
    .navbar {
        padding: 15px 0;
    }
    
    .logo img {
        height: 50px;
        max-width: 120px;
    }
    
    .hamburger {
        display: flex;
        flex-shrink: 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-width: 80vw;
        height: 100vh;
        background-color: var(--black-secondary);
        padding: 100px 30px;
        transition: var(--transition);
        overflow-y: auto;
        z-index: 10001;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .nav-link {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .logo img {
        height: 45px;
        max-width: 100px;
    }
    
    .nav-menu {
        width: 250px;
        padding: 80px 25px;
    }
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--gold-primary);
    background: transparent;
    color: var(--gold-primary);
    position: relative;
    z-index: 11;
    opacity: 1;
    visibility: visible;
}

.btn-primary {
    background-color: var(--gold-primary);
    color: var(--black-primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--gold-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 168, 117, 0.3);
}

.btn:hover {
    background-color: var(--gold-primary);
    color: var(--black-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 168, 117, 0.3);
}

.btn-full {
    width: 100%;
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    max-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1555244162-803834f70033?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.8), rgba(26, 26, 26, 0.9));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 700;
    letter-spacing: 8px;
    color: var(--gold-primary);
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-line {
    width: 200px;
    height: 3px;
    background-color: var(--gold-primary);
    margin: 0 auto 30px;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 50px;
    font-weight: 300;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-text {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-primary);
}

.scroll-line {
    width: 2px;
    height: 40px;
    background-color: var(--gold-primary);
    animation: scrollAnimation 2s ease-in-out infinite;
}

@keyframes scrollAnimation {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(0.5);
    }
    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 48px;
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 36px;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-line {
        width: 120px;
    }
}

/* ========== SECTION HEADERS ========== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-primary);
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-line {
    width: 100px;
    height: 3px;
    background-color: var(--gold-primary);
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }
}

/* ========== SERVICES SECTION ========== */
.services {
    padding: 120px 0;
    background-color: var(--black-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-content {
        padding: 30px 25px;
    }
}

@media (max-width: 576px) {
    .service-content {
        padding: 25px 20px;
    }
    
    .service-title {
        font-size: 26px;
    }
}

.service-card {
    background-color: var(--black-tertiary);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(201, 168, 117, 0.2);
}

.service-icon {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

.service-content {
    padding: 40px;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.service-line {
    width: 60px;
    height: 2px;
    background-color: var(--gold-primary);
    margin-bottom: 20px;
}

.service-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
}

.service-features li {
    font-size: 14px;
    color: var(--white);
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
}

/* ========== ABOUT SECTION ========== */
.about {
    padding: 120px 0;
    background-color: var(--black-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    height: 700px;
    overflow: hidden;
}

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

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(201, 168, 117, 0.1), transparent);
}

.about-content {
    padding: 20px 0;
}

.about-content .section-title {
    text-align: left;
}

.about-content .title-line {
    margin: 0;
}

.about-text {
    font-size: 16px;
    line-height: 1.9;
    color: var(--gray-light);
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
    padding: 40px 0;
    border-top: 1px solid var(--black-tertiary);
    border-bottom: 1px solid var(--black-tertiary);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--gold-primary);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background-color: var(--gold-primary);
    color: var(--black-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-text {
    font-size: 14px;
    color: var(--white);
}

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        height: 500px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

/* ========== GALLERY SECTION ========== */
.gallery {
    padding: 120px 0;
    background-color: var(--black-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(201, 168, 117, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--black-primary);
    font-weight: 600;
    letter-spacing: 2px;
}

.gallery-item:hover img {
    transform: scale(1.2);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

@media (max-width: 968px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .gallery-item {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== CONTACT SECTION ========== */
.contact {
    padding: 120px 0;
    background-color: var(--black-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--gold-primary);
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.info-icon {
    font-size: 28px;
    width: 50px;
    height: 50px;
    background-color: var(--black-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.info-content p {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.6;
}

/* ========== CONTACT FORM ========== */
.contact-form {
    background-color: var(--black-tertiary);
    padding: 50px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    background-color: var(--black-secondary);
    border: 2px solid var(--black-secondary);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold-primary);
    background-color: var(--black-primary);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background-color: var(--black-secondary);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    display: none;
    font-size: 14px;
}

.form-message.success {
    display: block;
    background-color: rgba(76, 175, 80, 0.1);
    border: 1px solid #4CAF50;
    color: #4CAF50;
}

.form-message.error {
    display: block;
    background-color: rgba(244, 67, 54, 0.1);
    border: 1px solid #f44336;
    color: #f44336;
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form {
        padding: 30px;
    }
}

/* ========== FOOTER ========== */
.footer {
    padding: 60px 0;
    background-color: var(--black-secondary);
    border-top: 1px solid var(--black-tertiary);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.footer-content {
    text-align: center;
}

.footer-logo img {
    height: 80px;
    margin: 0 auto 20px;
}

.footer-text {
    font-size: 14px;
    color: var(--gray-light);
    margin-bottom: 20px;
}

.footer-line {
    width: 60px;
    height: 2px;
    background-color: var(--gold-primary);
    margin: 20px auto;
}

.footer-copyright {
    font-size: 13px;
    color: var(--gray-dark);
    letter-spacing: 1px;
}

/* ========== WHATSAPP FLOAT BUTTON ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 576px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
}

.slide-up {
    opacity: 0;
    transform: translateY(50px);
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
}

/* ========== MOBILE RESPONSIVE IMPROVEMENTS ========== */
@media (max-width: 768px) {
    .services,
    .about,
    .gallery,
    .contact {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .services,
    .about,
    .gallery,
    .contact {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .btn {
        padding: 14px 30px;
        font-size: 12px;
    }
}

