:root {
    --primary: #2c3e50;
    --secondary: #c0392b;
    --accent: #e67e22;
    --light: #ecf0f1;
    --dark: #2c3e50;
    --white: #ffffff;
    --black: #333333;
    --blue:#243468;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.2);
}
@font-face {
  font-family: PirateBlue;
  src: url(public/fonts/PirateBlue.ttf);
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Playfair Display', serif;

        }

        body {
            overflow-x: hidden;
        }

        header {
            background-color: var(--blue);
            color: white;
            padding: 15px 0;
            position: relative;
            height: 80px;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            padding: 0 20px;
            height: 100%;
        }

        .logo {
            grid-column: 2;
            text-align: center;
            position: relative;
            height: 61px;
        }

        .logo img {
            height: 100px;
        }

        .logo:hover {
            transform: scale(1.1) ;
        }

        .nav-left, .nav-right {
            display: flex;
            gap: 25px;
        }

        .nav-right {
            justify-content: flex-end;
        }

        nav a {
            padding: 0 15px;
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        nav a:hover {
            color: #c9a769;
        }

        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #c9a769;
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        .phone-number {
            position: absolute;
            top: 8px;
            right: 20px;
            font-weight: bold;
            color: #c9a769;
            font-size: 14px;
        }

        /* Mobile styles */
        .hamburger {
            display: none;
            cursor: pointer;
            width: 30px;
            height: 25px;
            position: relative;
            z-index: 100;
        }

        .hamburger span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: white;
            border-radius: 3px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: .25s ease-in-out;
        }

        .hamburger span:nth-child(1) {
            top: 0px;
        }

        .hamburger span:nth-child(2), .hamburger span:nth-child(3) {
            top: 10px;
        }

        .hamburger span:nth-child(4) {
            top: 20px;
        }

        .hamburger.open span:nth-child(1) {
            top: 10px;
            width: 0%;
            left: 50%;
        }

        .hamburger.open span:nth-child(2) {
            transform: rotate(45deg);
        }

        .hamburger.open span:nth-child(3) {
            transform: rotate(-45deg);
        }

        .hamburger.open span:nth-child(4) {
            top: 10px;
            width: 0%;
            left: 50%;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 70%;
            height: 100vh;
            background-color: var(--blue);
            z-index: 99;
            transition: right 0.5s ease-in-out;
            clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%);
            padding: 80px 40px 40px 40px;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .mobile-menu.open {
            right: 0;
        }

        .mobile-menu a {
            color: white;
            text-decoration: none;
            font-size: 18px;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            text-align: right;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 98;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }

        .overlay.open {
            opacity: 1;
            visibility: visible;
        }

        @media (max-width: 992px) {
            .header-container {
                grid-template-columns: auto 1fr auto;
                align-items: flex-start;
                padding-top: 10px;
            }

            .logo {
                grid-column: 1;
                text-align: left;
                top:-10px;
            }

            .nav-left, .nav-right {
                display: none;
            }

            .hamburger {
                display: block;
                grid-column: 3;
                margin-top: 5px;
            }

            .phone-number {
                position: absolute;
                top: 8px;
                right: 60px;
                grid-column: unset;
                text-align: right;
                color: #c9a769;
            }
        }

        @media (max-width: 576px) {
            .mobile-menu {
                width: 80%;
                clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
                padding: 80px 20px 40px 40px;
            }
            
            .phone-number {
                font-size: 12px;
                right: 50px;
            }
        }