@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

@font-face {
    font-family: 'Transforma Sans Medium';
    src: url('../Assets/Images/transforma-sans-medium.ttf') format('truetype'),
         url('Assets/Images/transforma-sans-medium.ttf') format('truetype'),
         url('./Assets/Images/transforma-sans-medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    background: linear-gradient(180deg, #ece5cd 0%, #6b3a3a 100%);
    min-height: 100vh;
    padding: 40px 20px;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

h1, h2, h3 {
    font-family: 'Transforma Sans Medium', sans-serif;
    font-weight: normal;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: #F5EFE7;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

/* Header Section */
.header {
    background: linear-gradient(135deg, #602523 0%, #6b3a3a 100%);
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1000;
    border-radius: 20px 20px 0 0;
}

.logo-link {
    text-decoration: none;
    display: block;
    position: relative;
    z-index: 1002;
}

.logo-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    border: 4px solid #6b3a3a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.logo-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.nav a:hover {
    opacity: 0.8;
}

.cta-btn {
    background: #9b6e6e;
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.cta-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    z-index: 1002;
    position: relative;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Mobile Menu Dropdown - FIXED */
.mobile-menu {
    display: none;
    background: #6b3a3a;
    flex-direction: column;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-in-out;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    margin-top: 110px;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    max-height: 500px !important;
    display: flex !important;
    overflow-y: auto;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 50px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    text-transform: capitalize;
    transition: background 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #8b5a5a;
}

.mobile-menu-item:hover {
    background: #9b6a6a;
}

.mobile-menu-item.active {
    background: #7a4a4a;
    font-weight: 600;
}

.menu-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.menu-icon svg {
    stroke: white;
}

.hero-image-section {
    position: relative;
    width: 100%;
    height: 400px;
    z-index: 1;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 70%;
    height: auto;
    z-index: 2;
}

/* Info Banner */
.info-banner {
    background: #784e2f;
    padding: 20px;
    color: white;
    font-size: 13px;
    letter-spacing: 1px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.info-banner::before,
.info-banner::after {
    content: "PASSIONATE ABOUT CREATING BEAUTIFUL & FUNCTIONAL DIGITAL EXPERIENCES                    ";
    display: inline-block;
    animation: scroll-left 30s linear infinite;
    padding-right: 150px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Contact Content */
.contact-content {
    background: #F5EFE7;
    padding: 80px 50px;
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-section-title {
    font-size: 32px;
    color: #6b3a3a;
    margin-bottom: 30px;
    font-family: 'Transforma Sans Medium', sans-serif;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #6b3a3a;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid #daca9a;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    transition: all 0.3s;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7f8a63;
    box-shadow: 0 0 0 3px rgba(127, 138, 99, 0.1);
}

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

.contact-submit-btn {
    background: linear-gradient(135deg, #7f8a63 0%, #6b7644 100%);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(127, 138, 99, 0.3);
}

.contact-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Form Message Styles */
.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    text-align: center;
    animation: slideDown 0.3s ease;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Info */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #daca9a;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: #7f8a63;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #daca9a 0%, #bd8c68 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b3a3a;
    flex-shrink: 0;
}

.contact-info-content h3 {
    font-size: 18px;
    color: #6b3a3a;
    margin-bottom: 5px;
    font-family: 'Transforma Sans Medium', sans-serif;
}

.contact-info-content p {
    font-size: 15px;
    color: #5A5A5A;
    font-family: 'Montserrat', sans-serif;
}

.contact-info-content a {
    transition: opacity 0.3s ease;
}

.contact-info-content a:hover {
    opacity: 0.7;
}

/* Instagram Section */
.instagram-section {
    background: #7f8a63;
    padding: 80px 50px;
    position: relative;
    z-index: 1;
}

.instagram-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.instagram-text {
    position: relative;
    padding-bottom: 100px;
}

.instagram-title {
    font-size: 20px;
    color: white;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    text-transform: lowercase;
}

.instagram-subtitle {
    font-size: 48px;
    color: white;
    margin-bottom: 25px;
    font-family: 'Transforma Sans Medium', sans-serif;
    font-weight: normal;
    line-height: 1.1;
}

.instagram-description {
    font-size: 15px;
    color: #F5EFE7;
    line-height: 1.8;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #7f8a63;
    padding: 14px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
    border: 3px solid white;
}

.instagram-follow-btn:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.instagram-feed-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.instagram-feed-single {
    width: 100%;
    max-width: 450px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.instagram-feed-single .juicer-feed {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.instagram-feed-single .juicer-feed li.feed-item {
    background: white !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.instagram-feed-single .juicer-feed li.feed-item:not(:first-child) {
    display: none !important;
}

.instagram-feed-single .j-image {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 !important;
}

.instagram-feed-single .j-text {
    font-family: 'Montserrat', sans-serif !important;
    color: #5A5A5A !important;
    padding: 20px !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    background: white !important;
    margin: 0 !important;
}

.instagram-feed-single .j-text p {
    margin: 0 0 10px 0 !important;
    font-family: 'Montserrat', sans-serif !important;
    color: #5A5A5A !important;
    font-size: 14px !important;
}

.instagram-feed-single .j-paginate,
.instagram-feed-single .referral,
.instagram-feed-single .j-credits,
.instagram-feed-single .j-meta,
.instagram-feed-single .j-poster,
.instagram-feed-single .j-date,
.instagram-feed-single .j-social,
.instagram-feed-single .feed-item-date,
.instagram-feed-single .j-username,
.instagram-feed-single .j-message,
.instagram-feed-single .j-meta-top,
.instagram-feed-single ul.j-meta,
.instagram-feed-single .feed-item > a.j-username {
    display: none !important;
}

.instagram-feed-single .feed-item {
    overflow: visible !important;
}

.instagram-feed-single .juicer-feed > li {
    padding: 0 !important;
    margin: 0 !important;
}

.instagram-feed-single .j-image {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
}

.instagram-feed-single .j-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 0 !important;
    margin: 0 !important;
}

.instagram-feed-single .feed-item a {
    text-decoration: none !important;
    color: inherit !important;
    display: block !important;
}

.instagram-loading {
    text-align: center;
    padding: 60px 20px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #6b3a3a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.instagram-loading p {
    color: #6b3a3a;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #44515c 0%, #333f49 100%);
    color: white;
    padding: 60px 50px 30px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    text-align: left;
}

.footer-title {
    font-family: 'Transforma Sans Medium', sans-serif;
    font-size: 28px;
    margin-bottom: 8px;
    color: white;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Montserrat', sans-serif;
}

.footer-cta {
    display: flex;
    justify-content: center;
}

.footer-btn {
    background: white;
    border: 4px solid #44515c;
    color: #44515c;
    padding: 14px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
    display: inline-block;
}

.footer-btn:hover {
    background: #44515c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(68, 81, 92, 0.3);
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background: white;
    color: #6b3a3a;
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    text-align: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-separator {
    margin: 0 12px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Montserrat', sans-serif;
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE OPTIMIZATIONS
   ======================================== */

/* Tablet Breakpoint */
@media (max-width: 968px) {
    /* Show hamburger menu on tablet and mobile */
    .hamburger {
        display: flex !important;
    }

    /* Hide desktop navigation */
    .nav.desktop-nav {
        display: none !important;
    }

    /* Show mobile menu */
    .mobile-menu {
        display: flex;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-image-section {
        height: 350px;
    }

    .hero-overlay-image {
        max-width: 75%;
    }

    .instagram-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .instagram-subtitle {
        font-size: 40px;
    }

    .instagram-text {
        padding-bottom: 60px;
    }

    .footer {
        padding: 40px 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

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

    .footer-social {
        justify-content: center;
    }

    .footer-title {
        font-size: 24px;
    }
}

/* Mobile Breakpoint - 768px */
@media (max-width: 768px) {
    body {
        background: #F5EFE7;
        padding: 0;
        min-height: 100vh;
    }

    .container {
        border-radius: 0;
        box-shadow: none;
        overflow: visible;
    }

    .header {
        border-radius: 0;
        padding: 15px 20px;
        position: relative;
    }

    .mobile-menu {
        margin-top: 90px;
    }

    .logo-circle {
        width: 60px;
        height: 60px;
        border-width: 3px;
    }

    .mobile-menu-item {
        padding: 18px 20px;
    }

    .hero-image-section {
        height: 300px;
    }

    .hero-overlay-image {
        max-width: 80%;
    }

    .info-banner {
        font-size: 12px;
        padding: 15px 10px;
    }

    .contact-content {
        padding: 50px 20px;
    }

    .contact-grid {
        gap: 40px;
    }

    .contact-section-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }

    .form-group textarea {
        min-height: 120px;
    }

    .contact-submit-btn {
        padding: 14px 32px;
        font-size: 14px;
    }

    .contact-info-card {
        padding: 20px;
        gap: 15px;
    }

    .contact-info-icon {
        width: 45px;
        height: 45px;
    }

    .contact-info-content h3 {
        font-size: 16px;
    }

    .contact-info-content p {
        font-size: 14px;
    }

    .instagram-section {
        padding: 50px 20px;
    }

    .instagram-container {
        gap: 40px;
    }

    .instagram-text {
        padding-bottom: 0;
    }

    .instagram-title {
        font-size: 18px;
    }

    .instagram-subtitle {
        font-size: 36px;
    }

    .instagram-description {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .instagram-follow-btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    .instagram-feed-single {
        max-width: 100%;
    }

    .footer {
        padding: 40px 20px 20px;
        border-radius: 0;
    }

    .footer-content {
        gap: 25px;
        margin-bottom: 30px;
    }

    .footer-title {
        font-size: 22px;
    }

    .footer-tagline {
        font-size: 13px;
    }

    .footer-btn {
        padding: 12px 28px;
        font-size: 14px;
        border-width: 3px;
    }

    .footer-links {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .footer-separator {
        margin: 0 8px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

/* Small Mobile Breakpoint - 480px */
@media (max-width: 480px) {
    .header {
        padding: 12px 15px;
    }

    .logo-circle {
        width: 55px;
        height: 55px;
        border-width: 2px;
    }

    .mobile-menu {
        margin-top: 80px;
    }

    .mobile-menu-item {
        padding: 16px 15px;
        font-size: 14px;
    }

    .hero-image-section {
        height: 250px;
    }

    .hero-overlay-image {
        max-width: 85%;
    }

    .info-banner {
        font-size: 11px;
        padding: 12px 8px;
    }

    .contact-content {
        padding: 40px 15px;
    }

    .contact-section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .contact-form {
        gap: 20px;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 13px;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .contact-submit-btn {
        padding: 12px 28px;
        font-size: 13px;
    }

    .contact-info-card {
        padding: 18px;
    }

    .contact-info-icon {
        width: 40px;
        height: 40px;
    }

    .contact-info-content h3 {
        font-size: 15px;
    }

    .contact-info-content p {
        font-size: 13px;
    }

    .instagram-section {
        padding: 40px 15px;
    }

    .instagram-container {
        gap: 35px;
    }

    .instagram-title {
        font-size: 16px;
    }

    .instagram-subtitle {
        font-size: 28px;
    }

    .instagram-description {
        font-size: 13px;
    }

    .instagram-follow-btn {
        padding: 10px 24px;
        font-size: 13px;
    }

    .footer {
        padding: 30px 15px 15px;
    }

    .footer-content {
        gap: 20px;
        margin-bottom: 25px;
    }

    .footer-title {
        font-size: 20px;
    }

    .footer-tagline {
        font-size: 12px;
    }

    .footer-btn {
        padding: 11px 24px;
        font-size: 13px;
    }

    .footer-social {
        gap: 15px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
    }

    .social-icon svg {
        width: 16px;
        height: 16px;
    }

    .footer-links {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .footer-separator {
        margin: 0 6px;
    }

    .footer-bottom {
        padding-top: 15px;
    }

    .footer-bottom p {
        font-size: 11px;
    }
}

/* Extra Small Mobile - 360px and below */
@media (max-width: 360px) {
    .hero-overlay-image {
        max-width: 90%;
    }

    .instagram-subtitle {
        font-size: 24px;
    }

    .contact-section-title {
        font-size: 22px;
    }
}